$(document).ready(function(){
 	// ie 6
 	if( $.browser.msie && parseInt( $.browser.version ) < 7 ){
		$('#nav > li').hover(
			function()
			{
			$('#nav').css('z-index', 100);
				$(this).children('ul').css(
					{
						visibility:'visible',
						zIndex: '1000'
					}
				);
				
				
			},
			function()
			{
				$(this).children('ul').css('visibility','hidden');
			}
		);
 	}
 	if($.browser.msie)
 	{
 		$('#sky').remove();
 	}
});