$(document).ready(function() {
	$(".home_sliders li").hover (function () {
		$(this).find('div').stop().animate({"top": "7px"}, "fast");

}, function(){
		$(this).find('div').stop().animate({"top": "200px"}, "slow");

});
});
