
	
	jQuery(document).ready(function() {

		jQuery("#mgUp a").hover(function() {
		    jQuery(this).stop().animate({ marginTop: "-8px" }, 200);
		    jQuery(this).parent().find("span").stop().animate({ marginTop: "18px", opacity: 0.25 }, 200);
		},function(){
		    jQuery(this).stop().animate({ marginTop: "0px" }, 300);
		    jQuery(this).parent().find("span").stop().animate({ marginTop: "1px", opacity: 1 }, 300);
		});
				
	
	});
