jQuery(document).ready(function() {
var $j = jQuery.noConflict();  
$j(".box h3").hover(function() {
	$j(this).stop().animate({marginLeft : "20px"},200);
},function() {
	$j(this).stop().animate({marginLeft : "0px"},200);
});
});
