$(document).ready(function() {
	//alert("JQ is onboard");
	//===================== page setup ======================================//
	
	$('.ShowMainImageTriggerXX').click(function(){
		//alert("OK");
		var antiCache=new Date().getTime();
		var TargetImgID = $(this).attr('id');
		var SourceImgURL= $(this).attr('src');
		SourceImgURL=SourceImgURL.replace(/_tn/,'');
		$('#MainShowImg').attr('src',SourceImgURL + '#' + antiCache);
	});
	//========================= END OF METHOD ===========================//
	$('.ShowMainImageTrigger').click(function(){
		//alert("OK");
		var antiCache=new Date().getTime();
		var TargetImgID = $(this).attr('id');
		CurrentSlideID=TargetImgID;
		var SourceImgURL= $(this).attr('src');
		SourceImgURL=SourceImgURL.replace(/_tn/,'');
		$('#MainShowImg').attr('src',SourceImgURL + '?' + antiCache);
		var thisSlideCaptionID=parseInt(CurrentSlideID.replace(/img_SlideShowImage_tn/,''));
		var thisSlideCaption= SlideCaptions[thisSlideCaptionID];
		//alert("Caption: " + thisSlideCaption + "  " + thisSlideCaptionID);
		$('#CurrentImageCaption').html(thisSlideCaption);
	});
	
	function ShowMainImage(TargetImgId,SourceImgURL){
		var antiCache=new Date().getTime();
		//alert("ok, change:"+ TargetImgId + " to: " + SourceImgURL + '#' + antiCache);
		$('#'+TargetImgId).attr('src',SourceImgURL + '#' + antiCache);
		//alert("ok");
		//document.getElementById(ImageID).src= ImageSrcs[i]
	}
});

