
	
// Hover moving effect
	$(document).ready(function() {
			$(".listing_col a").hover(function() {	//On hover...
				$(this).find("img").stop().animate({ 
					marginTop: "10" //Find the span tag and move it up 40 pixels
				}, 250);
			} , function() { //On hover out...
				$(this).find("img").stop().animate({
					marginTop: "0" //Move the span back to its original state (0px)
				}, 250);
			});
	});

