function crossfadeImage(str_divId, imgCount, imgName)
{
	nextImg = nextImg == imgCount ? 1 : nextImg+1;
	var nextName = imgName.replace(/%no%/, nextImg);
	var img = new Image();
	$(img).attr('src', nextName).load(function() {
		$('#'+str_divId).prepend("<div class='slide'><img src='"+nextName+"'></div>");
		$('#'+str_divId+' .slide:last').fadeOut(1000, function() {
			$(this).remove();
		});
	});
}