jQuery(function(){
	jQuery(".slider-link-1, .slider-link-2, .slider-link-3").hover(function(){
		jQuery(this).animate({
			marginTop: "-10px"
		}, 250);
	}, function(){
		jQuery(this).animate({
			marginTop: "0px"
		}, 250);
	});
});
