$(document).ready(function(){
	$('#nav > li').hover(
		function(){
			if(isIE7==true){
				$(this).children('ul').css('top','34px').fadeIn();
			}else if(isIE6==true){
			}else{
				$(this).children('ul').wrap(document.createElement('div'));
				$(this).children('div').css({
					'height':49*($(this).find('li').length),
					'width':142,
					'position':'absolute',
					'top':34
				}).children('ul').slideDown('fast');
			}
		},
		function(){
			if(isIE7==true){
				$(this).children('ul').fadeOut();
			}else{
				$(this).find('ul').slideUp('fast');
				$(this).children('div').height(0);
			}
		}
	);
});