$(window).load(function()
  {
  $(".box").hover(function(){
    $(this).find(".thumb-title").animate({opacity: "0", left: "-=420"}, 400);
	}, function()
	{
  	$(this).find(".thumb-title").animate({opacity: "1", left: "+=420"}, 300);
	});
});

$(window).load(function()
  {
  $(".box").hover(function(){
    $(this).find(".thumb-clickhere").animate({opacity: "1", bottom: "+=60"}, 400);
	}, function()
	{
  	$(this).find(".thumb-clickhere").animate({opacity: "0", bottom: "-=60"}, 300);
	});
});

$(window).load(function()
  {
  $(".box-blog").hover(function(){
    $(this).find(".thumb-readpost").animate({opacity: "1", bottom: "+=60"}, 400);
	}, function()
	{
  	$(this).find(".thumb-readpost").animate({opacity: "0", bottom: "-=60"}, 300);
	});
});









