$(document).ready(function() {
   $("nav > ul > li").mouseover(function(){   		
	   $('div.drop-down').hide(); 
	   $("nav > ul > li").removeClass('hover');
	   $(this).find('div.drop-down').show();
	   $(this).addClass('hover');
   }); 
   
   $("nav > ul > li:first").mouseover(function(){   		
	   $('#lb').hide();
   }); 
   
   $("nav > ul > li:first").mouseout(function(){   		
	   $('#lb').show();
   });
   
   $("nav > ul > li").mouseout(function(){  
	   $(this).find('div.drop-down').hide();
	   $(this).removeClass('hover');
   });
   
   if ($.browser.msie) {   
	   $('img.slogan').show();
   }
   else
   {
	   $('img.slogan').fadeIn(5000);
   }
   
   /*$('div.drop-down').mouseout(function(){
	   $(this).hide();
   });*/
   
});



