jQuery(function($) {
	$('#navMenu #menu1 > ul > li').hover(
		function(event) {
			if(document.body.offsetWidth > 800) {
				div = $(this).children('div');
				list = div.children('ul');
				height = list.height() - 1;
				width = list.width();
				div.css({'width':width})
				list.css({'position':'absolute', 'bottom':0, 'z-index':999})
				div.stop(true,false).animate({'height':height}, 'fast')
			}
		},
		function(event) {
			if(document.body.offsetWidth > 800) {
				div = $(this).children('div');
				list = div.children('ul');
				list.css({'z-index':'auto'});
				div.stop(true,false).animate({'height':0})
			}
		}
	);
});
