function PreloadHomeImages()
{
  document.PointOPines = new Object();
  var MyImages = new Array('AboutOurCamp', 'Parents', 'Happenings', 'JobOpportunities', 'Alumni', 'Request', 'AfterCamp', 'Contact');
  document.PointOPines.loadedImages = new Array();
  for(x=0;x<MyImages.length;x++) 
  {
    document.PointOPines.loadedImages[x] = new Image();
    document.PointOPines.loadedImages[x].src = '/Images/Home/Signs/Roll/' + MyImages[x] + '.jpg';
  }
}

function PreloadImages(Images)
{
  document.PointOPines = new Object();
  var MyImages = new Array(Images);
  document.PointOPines.loadedImages = new Array();
  for(x=0;x<MyImages.length;x++) 
  {
    document.PointOPines.loadedImages[x] = new Image();
    document.PointOPines.loadedImages[x].src = '/Images/Navigation/Signs/Roll/' + MyImages[x] + '.jpg';
  }
}

function HomeOver(Section)
{
	document.images[Section].src = '/Images/Home/Signs/Roll/' + Section + '.jpg';
}

function HomeOut(Section)
{
	document.images[Section].src = '/Images/Home/Signs/Rest/' + Section + '.jpg';
}

function PageOver(Section, Page)
{
	document.images['_' + Page].src = '/Images/Navigation/Signs/Roll/' + Section + '/' + Page + '.jpg';
}

function PageOut(Section, Page)
{
	document.images['_' + Page].src = '/Images/Navigation/Signs/Rest/' + Section + '/' + Page + '.jpg';
}

function SectionOver(Section)
{
	document.images[Section].src = '/Images/Navigation/Signs/Roll/' + Section + '.jpg';
}

function SectionOut(Section)
{
	document.images[Section].src = '/Images/Navigation/Signs/Rest/' + Section + '.jpg';
}

function RenderImageMapEmailAddress(Prefix)
{
	parent.location = 'mailto:' + Prefix + '@pointopines.com';
}

function CursorOver(ID)
{
	document.getElementById(ID).className = 'CursorOver';
}

function CursorOut(ID)
{
	document.getElementById(ID).className = 'CursorOut';
}