

jQuery(document).ready(function() { 
	

	// topNav
	jQuery('.main').hover(function(){
		jQuery(this).animate({top: "6px"}, 250 );
	}, function() {
		jQuery(this).animate({top: "50px"}, 250 );
	});
	
	
  	});
  	
  	
