// JavaScript Document
// simple image rollover for jQuery gallery
<!--

function showPic(whichpic){
	// check if browser allows DOM getElementById
	if (document.getElementById) {
	  // replace the #photoMain img #Large with the current img href'd 
	  document.getElementById('Large').src = whichpic.href;
	  // follow link whether js is enabled or not
	  return true;
	}  	
}

// if there's another gallery on the same page, run the showPic2 for it
function showPic2(whichpic){
	// check if browser allows DOM getElementById
	if (document.getElementById) {
	  // replace the #photoMain img #Large with the current img href'd 
	  document.getElementById('Large2').src = whichpic.href;
	  // follow link whether js is enabled or not
	  return true;
	}  	
}

// if there's another gallery on the same page, run the showPic2 for it
function showPic3(whichpic){
	// check if browser allows DOM getElementById
	if (document.getElementById) {
	  // replace the #photoMain img #Large with the current img href'd 
	  document.getElementById('Large3').src = whichpic.href;
	  // follow link whether js is enabled or not
	  return true;
	}  	
}

// if there's another gallery on the same page, run the showPic2 for it
function showPic4(whichpic){
	// check if browser allows DOM getElementById
	if (document.getElementById) {
	  // replace the #photoMain img #Large with the current img href'd 
	  document.getElementById('Large4').src = whichpic.href;
	  // follow link whether js is enabled or not
	  return true;
	}  	
}


//-->

