$(document).ready(function()
  {
  $("a.thumb").hover(function(){
    $(this).find("h1.title , h1.client").animate({
		bottom:"0px",										 
		opacity: 0
		}, 150 );
	}, function()
	{
    $(this).find("h1.title").animate({
		bottom:"51px",										 
		opacity: 1
		}, 150 );
	$(this).find("h1.client").animate({
		bottom:"30px",
		opacity: 1
		}, 150 );
  });
});







