$(document).ready(function() {

    $(".box").mouseenter(function() {
    	$(this).addClass('over'); 
    	$(this).find("h2").animate({"left" : 0}, 425);
    });
    $(".box").mouseleave(function() {
    	$(this).removeClass('over');  
    	$(this).find("h2").animate({"left" : 165}, 425);
    });
    
});
