﻿/*
	Javascript for changing images 
*/

	function changeImage(thumbImage) {
		var newUrl=thumbImage.src;
		var lp=document.getElementById("largePic");
		newUrl=newUrl.replace("_Thumb.png",".jpg");
		if (lp.filters) {
	    	lp.filters[0].Apply(); 
	    }
		lp.style.backgroundImage="url("+newUrl+")";
		lp.title=thumbImage.title;
		if (lp.filters) {
			lp.filters[0].Play();
		}
	}
