﻿$(function () {
	$('#menus > li').each(function (index) {
		$(this).hover(
			function () {
				$(this).find('ul:eq(0)').slideDown('fast');
			},
			function () {
				$(this).find('ul:eq(0)').hide();
			}
		);
	});
	//$('#footer').css({left: function (i,v) { return $('#navtop').offset().left + 'px'; } });
});
