function showgallerylink() {
	
theid = this.id;
theimageid = theid.substring(7);

if(theimageid == "image1"){
	swapfade(document.getElementById('galleryimage'), this.src, '2', 'Beechworth Photography Gallery');	
	}
		
$(theimageid).removeClass("imagelinkloading");
$(theimageid).addClass("imagelinkloaded");
}

function showgallerycachedlinks(theid,thesrc){
theimageid = theid.substring(7);
if(theimageid == "image1"){
	swapfade(document.getElementById('galleryimage'), thesrc, '2', 'Beechworth Photography Gallery');	
	}
		
$(theimageid).removeClass("imagelinkloading");
$(theimageid).addClass("imagelinkloaded");

}




function preparefade(evt){
	DOMAss.preventDefault(evt);
swapfade($("galleryimage"), this, '2', 'Beechworth Photography Gallery');


}