		  $(document).ready(function() {
			  $(".nav .mitem").hover(function() {
				  $(this).css({'z-index' : '10'}); 
				  $(this).find('img').addClass("hover").stop() 
					  .animate({marginTop: '3px',width: '77px', height: '75px' }, 350); } , function() {
				  $(this).css({'z-index' : '0'}); 
				  $(this).find('img').removeClass("hover").stop()  
					  .animate({marginTop: '18px', width: '61px', height: '59px' }, 100);
			  });			
			  
			  $(".home").hover(function() {
				  $(this).css({'z-index' : '10'}); 
				  $(this).find('img').addClass("hover").stop() 
					  .animate({marginTop: '7px',	width: '203px', height: '62px' }, 350); 
				  } , function() {
				  $(this).css({'z-index' : '0'}); 
				  $(this).find('img').removeClass("hover").stop()  
					  .animate({marginTop: '9px', width: '193px', height: '59px' }, 100);
			  });			
		  
		  
		  $(".grow").hover(function() {
				  $(this).css({'z-index' : '10'}); 
				  $(this).addClass("hover").stop() 
					  .animate({marginLeft: '-4px',marginTop: '-4px',	width: '236px', height: '148px' }, 150);
				  $(this).find(".dest_img").addClass("hover").stop() 
					  .animate({marginTop: '0px',	width: '236px', height: '130px' }, 150); 
				  $(this).find(".dest_label").addClass("hover").stop() 
					  .animate({marginTop: '0px',	width: '236px', height: '19px' }, 150); 
				  $(this).find("a").addClass("hover").stop() 
					  .animate({fontSize: '13px', lineHeight: '14px' }, 150); 
				  } , function() {
				   
				  $(this).removeClass("hover").stop() 
					  .animate({marginLeft: '0px',marginTop: '0px',	width: '229px', height: '144px' }, 50);
				  $(this).find(".dest_img").removeClass("hover").stop()  
					  .animate({marginTop: '0px', width: '229px', height: '126px' }, 50);
				  $(this).find(".dest_label").addClass("hover").stop() 
					  .animate({marginTop: '0px',	width: '229px', height: '18px' }, 50); 
					 $(this).css({'z-index' : '0'});
				  $(this).find("a").removeClass("hover").stop() 
					  .animate({ fontSize: '12px', lineHeight: '18px' }, 50); 
			  });			
			  
			$(".badge").hover(function() {
				  $(this).css({'z-index' : '10'}); 
				  $(this).addClass("hover").stop() 
					  .animate({marginTop: '-5px', marginLeft: '-6px', width: '109px', height: '118px' }, 75); 
				  } , function() {
				  $(this).css({'z-index' : '1'}); 
				  $(this).removeClass("hover").stop()  
					  .animate({marginTop: '0', marginLeft: '0', width: '99px', height: '107px' }, 50);
			  });	

			$(".badge2").hover(function() {
				  $(this).css({'z-index' : '10'}); 
				  $(this).find('img').addClass("hover").stop() 
					  .animate({marginTop: '-5px', marginLeft: '-5px', width: '111px', height: '126px' }, 150); 
				  } , function() {
				  $(this).css({'z-index' : '1'}); 
				  $(this).find('img').removeClass("hover").stop()  
					  .animate({marginTop: '0', marginLeft: '0', width: '85px', height: '95px' }, 75);
			  });
		  });


