function JSwapInit( img, newSrc ) {
	var jimg = $("#"+img.id);
	var parent = jimg.parent();
	parent.prepend('<div id="'+img.id+'" class="rollable"><img class="jswapover" src="'+newSrc+'" border="0" /></div>').hover(function() {
		$(this).find(":first-child").css({opacity: 1}).animate({opacity: 1}, 500).find("img.jswapover").stop(true).animate({opacity: 1}, 1000);
	}, function() {
		$(this).find("img.jswapover").stop(true).animate({opacity: 0}, 1000);
	}).find("img.jswapover").css({opacity: 0}).parent().css({width: 'auto', background: 'url("'+img.src+'") no-repeat'});
	jimg.remove();
}