$().ready(function(){
	
	$(".slider").hover(function(){
		$(this).find(".slider-object").css('margin-top', -1 * $(this).height());
	}, function(){
		$(this).find(".slider-object").css('margin-top', 0);
	});
});
