$(document).ready(function() {
		$('.hover_block').hover(function(){
				$(this).find('img').animate({left:'84px'},{queue:false,duration:500});
			}, function(){
				$(this).find('img').animate({left:'-141px'},{queue:false,duration:500});
		});
});


$(document).ready(function() {
  $(".column img").fadeTo("fast", 0.3);
  $(".column").hover(function(){
    $(this).find("img").fadeTo("fast", 1.0); 
  },function(){
    $(this).find("img").fadeTo("slow", 0.3);
  });
});

