jQuery(document).ready(function(){

	jQuery("div.pic").hover(function() {
		jQuery(this).animate({marginLeft: '-8px'}, 700);
	}, function() {
		jQuery(this).animate({marginLeft: '0'}, 700);
	});
	
});