// inline images
var gala, symposium, family;

// link buttons
var galaBase, galaRoll;
var symposiumBase, symposiumRoll;
var familyBase, familyRoll;

//Below is the code that pre-loads the graphics 

  galaBase = new Image();
  galaBase.src = "/graphics/main/openGala.png";
  galaRoll = new Image();
  galaRoll.src = "/graphics/main/openGalaON.png";
 
  symposiumBase = new Image();
  symposiumBase.src = "/graphics/main/openSymposium.png";
  symposiumRoll = new Image();
  symposiumRoll.src = "/graphics/main/openSymposiumON.png";
 
  familyBase = new Image();
  familyBase.src = "/graphics/main/openFamily.png";
  familyRoll = new Image();
  familyRoll.src = "/graphics/main/openFamilyON.png";
 
// rollover swapping function
function fSwapImage( in_InLineImgID, in_SwapImg )
{
  in_InLineImgID.src = in_SwapImg.src; 
	return;
}
