// This is for the navigation rollovers on the home page.
if (document.images) {
	videoOn = new Image();
	videoOn.src = "assets/images/buttons/but_video_bolinover.gif";
	videoOff = new Image();
	videoOff.src = "assets/images/buttons/but_video_bolin.gif";
}

function hiLiteOn(imageName) {
	if (document.images) {
		document [imageName].src = eval(imageName + "On.src")
  }
}

function hiLiteOff(imageName) {
	if (document.images) {
		document [imageName].src = eval(imageName + "Off.src")
  }
}

///////////////////////////////////////////////////////////////////////////////
// Window pop-up functions for the home page                                 //
///////////////////////////////////////////////////////////////////////////////

// This is the popup window for the Weekly Photo on the Bolin Board page.

function windowspecial()
{
  window.open('weeklypics/06_0203_RockEstra_1.html','special','width=600,height=508,menubar=no,toolbar=no,location=no,scrollbars=no,resizable=no,status=no,directories=no,top=10,left=10');
}

function bolinfest2010()
{
  window.open('bolinfests/bolinfest10/index.html','bolinfest09','width=640,height=600,menubar=no,toolbar=no,location=no,scrollbars=yes,resizable=yes,status=no,directories=no,top=10,left=10');
}

