// JavaScript Document
if (document.images)
    {
      preload_image_object = new Image();
      // set image url
      image_url = new Array();
      image_url[0] = "./wp-content/themes/wp-framework/library/media/images/home_feature_1.jpg";
      image_url[1] = "./wp-content/themes/wp-framework/library/media/images/home_feature_ovr1.jpg";
      image_url[2] = "./wp-content/themes/wp-framework/library/media/images/home_feature_2.jpg";
      image_url[3] = "./wp-content/themes/wp-framework/library/media/images/home_feature_ovr2.jpg";
	  image_url[4] = "./wp-content/themes/wp-framework/library/media/images/home_feature_3.jpg";
	  image_url[5] = "./wp-content/themes/wp-framework/library/media/images/home_feature_ovr3.jpg";

       var i = 0;
       for(i=0; i<=3; i++) 
         preload_image_object.src = image_url[i];
    }
function changeDivImage1()
    {
            document.getElementById("homefeature1").style.backgroundImage = "url(./wp-content/themes/wp-framework/library/media/images/home_feature_1.jpg)";
    }
function changeDivImage1ovr()
    {
            document.getElementById("homefeature1").style.backgroundImage = "url(./wp-content/themes/wp-framework/library/media/images/home_feature_ovr1.jpg)";
    }
function changeDivImage2()
    {
            document.getElementById("homefeature2").style.backgroundImage = "url(./wp-content/themes/wp-framework/library/media/images/home_feature_2.jpg)";
    }
function changeDivImage2ovr()
    {
            document.getElementById("homefeature2").style.backgroundImage = "url(./wp-content/themes/wp-framework/library/media/images/home_feature_ovr2.jpg)";
    }
function changeDivImage3()
    {
            document.getElementById("homefeature3").style.backgroundImage = "url(./wp-content/themes/wp-framework/library/media/images/home_feature_3.jpg)";
    }
function changeDivImage3ovr()
    {
            document.getElementById("homefeature3").style.backgroundImage = "url(./wp-content/themes/wp-framework/library/media/images/home_feature_ovr3.jpg)";
    }
		

