// JavaScript Document

// Begin Image Swap Script
function showPic (whichpic) { 
   //alert(whichpic);
   if (document.getElementById) {
    document.getElementById('mainimage').src = whichpic.href;	
	document.getElementById('mainimage').alt = whichpic.href;
    return false;
  } else {
    return true;
  }
}// End


// Begin Image Swap
function funcPicRollOver(fPicTarget, fPicName) {
	document.getElementById(fPicTarget).src = fPicName;		
}
// End