var swapImage;

$j(document).ready(function(){

swapImage = function(image, target) {
	swapthis=document.getElementById(target);
	var swap = "url('images/"+image+"') no-repeat";
	swapthis.style.background=swap;
	
	$j('#main_image img').css('display','none');
	
}

});
