/**
 * Site-wide javascript functions
 */


/**
 * Open Browser Window
 */
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

/**
 * Activate rollover graphic
 */
function rollover(imgName, id, action) {

	if (document.images) {
		element_to_change = document.getElementById(id);
		element_to_change.src = eval(imgName + "_" + action + ".src");
	}
}

/**
* Preload rollover images
*/
function preloadImages() {

	if (document.images) {
		
		home_off = new Image();
		home_off.src = "/images/navs/home_off.gif"; 
		home_on = new Image();
		home_on.src = "/images/navs/home_on.gif"; 

		whychoose_off = new Image();
		whychoose_off.src = "/images/navs/whychoose_off.gif"; 
		whychoose_on = new Image();
		whychoose_on.src = "/images/navs/whychoose_on.gif"; 

		products_off = new Image();
		products_off.src = "/images/navs/products_off.gif"; 
		products_on = new Image();
		products_on.src = "/images/navs/products_on.gif"; 
		
		solutions_off = new Image();
		solutions_off.src = "/images/navs/solutions_off.gif"; 
		solutions_on = new Image();
		solutions_on.src = "/images/navs/solutions_on.gif"; 

		technology_off = new Image();
		technology_off.src = "/images/navs/technology_off.gif";
		technology_on = new Image();
		technology_on.src = "/images/navs/technology_on.gif";

		partners_off = new Image();
		partners_off.src = "/images/navs/partners_off.gif";
		partners_on = new Image();
		partners_on.src = "/images/navs/partners_on.gif";

		services_off = new Image();
		services_off.src = "/images/navs/services_off.gif";
		services_on = new Image();
		services_on.src = "/images/navs/services_on.gif";

		aboutus_off = new Image();
		aboutus_off.src = "/images/navs/aboutus_off.gif";
		aboutus_on = new Image();
		aboutus_on.src = "/images/navs/aboutus_on.gif";

		contact_off = new Image();
		contact_off.src = "/images/navs/contact_off.gif";
		contact_on = new Image();
		contact_on.src = "/images/navs/contact_on.gif";

		jobs_off = new Image();
		jobs_off.src = "/images/navs/jobs_off.gif";
		jobs_on = new Image();
		jobs_on.src = "/images/navs/jobs_on.gif";

		quicktour_off = new Image();
		quicktour_off.src = "/images/viewquicktour_off.png";
		quicktour_on = new Image();
		quicktour_on.src = "/images/viewquicktour_on.png";

		demorequest_off = new Image();
		demorequest_off.src = "/images/requestlivedemo_off.png";
		demorequest_on = new Image();
		demorequest_on.src = "/images/requestlivedemo_on.png";


	}

}

preloadImages();