<!--

var flag = false;

function imageLoad() {
	if (document.images) {
	  on_splash_img_00= new Image();
	  on_splash_img_00.src = "images/splash_img_00.jpg";

	  on_splash_img_01= new Image();
	  on_splash_img_01.src = "images/splash_img_01.jpg";

	  on_splash_img_02= new Image();
	  on_splash_img_02.src = "images/splash_img_02.jpg";

	  on_splash_img_03= new Image();
	  on_splash_img_03.src = "images/splash_img_03.jpg";

	  on_splash_img_04= new Image();
	  on_splash_img_04.src = "images/splash_img_04.jpg";

	  return (flag = true);  
	}
}

if (document.images) {

  on_about_us_01= new Image();
  on_about_us_01.src = "images/on_about_us_01.gif";

  on_services_01 = new Image();
  on_services_01.src = "images/on_services_01.gif";

  on_testimonials_01 = new Image();
  on_testimonials_01.src = "images/on_testimonials_01.gif";

  on_faq_01 = new Image();
  on_faq_01.src = "images/on_faq_01.gif";

  on_hagglesheet_01 = new Image();
  on_hagglesheet_01.src = "images/on_hagglesheet_01.gif";

  off_about_us_01 = new Image();
  off_about_us_01.src = "images/off_about_us_01.gif ";

  off_services_01 = new Image();
  off_services_01.src = "images/off_services_01.gif";

  off_testimonials_01 = new Image();
  off_testimonials_01.src = "images/off_testimonials_01.gif ";

  off_faq_01 = new Image();
  off_faq_01.src = "images/off_faq_01.gif ";

  off_hagglesheet_01= new Image();
  off_hagglesheet_01.src = "images/off_hagglesheet_01.gif ";

  off_splash_img_00 = new Image();
  off_splash_img_00.src = "images/splash_img_00.jpg";

  off_splash_img_01 = new Image();
  off_splash_img_01.src = "images/splash_img_00.jpg";

  off_splash_img_02 = new Image();
  off_splash_img_02.src = "images/splash_img_00.jpg";

  off_splash_img_03 = new Image();
  off_splash_img_03.src = "images/splash_img_00.jpg";

  off_splash_img_04 = new Image();
  off_splash_img_04.src = "images/splash_img_00.jpg";

  on_step_one = new Image();
  on_step_one.src = "images/step_one_on.gif";

  on_step_two = new Image();
  on_step_two.src = "images/step_two_on.gif";

  on_step_three = new Image();
  on_step_three.src = "images/step_three_on.gif";

  off_step_one = new Image();
  off_step_one.src = "images/step_one_on.gif";

  off_step_two = new Image();
  off_step_two.src = "images/step_two_on.gif";

  off_step_three = new Image();
  off_step_three.src = "images/step_three_on.gif";

  off_arrow_dr = new Image();
  off_arrow_dr.src = "images/arrow_dr_on.gif";

  off_arrow_ur = new Image();
  off_arrow_ur.src = "images/arrow_ur_on.gif";
}

function turnOn(imageName, imageName2, dest, dest2) {
  if (document.images && (flag == true))  {
    document[dest].src = eval("on_" + imageName + ".src");
    document[dest2].src = eval("on_" + imageName2 + ".src");
	return (flag = true);
  }
}

function turnOff(imageName, imageName2, dest, dest2) {
  if (document.images) {
    document[dest].src = eval("off_" + imageName + ".src");
    document[dest2].src = eval("off_" + imageName2 + ".src");
  }
}

// -->