// my.js

var $j = jQuery.noConflict();

$j(function() {
 
 	//$j('target').action();
	
	$j("div.listing .area_image a").each(
			
			function(){
			var url = $j(this).attr("href");
			url = url.replace('/pages/','');
			$j(this).parent().next().next().children().attr('href','../../pages/'+url);
			
	});
	
		
	
});