//<!--
//These are the rollovers all navigation elements
if (document.images) {            // Active Images
	nav_why_use_assessments_on = new Image(); 
	nav_why_use_assessments_on.src = "images/nav/nav_why_use_assessments_on.gif";
	nav_getting_started_on = new Image(); 
	nav_getting_started_on.src = "images/nav/nav_getting_started_on.gif";
	nav_faq_on = new Image(); 
	nav_faq_on.src = "images/nav/nav_faq_on.gif";
	nav_request_samples_on = new Image(); 
	nav_request_samples_on.src = "images/nav/nav_request_samples_on.gif";
	nav_contact_us_on = new Image(); 
	nav_contact_us_on.src = "images/nav/nav_contact_us_on.gif";
	home_calc_on = new Image(); 
	home_calc_on.src = "images/home/home_calc_on.gif";
	home_stepone_on = new Image(); 
	home_stepone_on.src = "images/home/home_stepone_on.gif";
	home_perspective_on = new Image(); 
	home_perspective_on.src = "images/home/home_perspective_on.gif";
	home_salesindicator_on = new Image(); 
	home_salesindicator_on.src = "images/home/home_salesindicator_on.gif";
	home_performanceindicator_on = new Image(); 
	home_performanceindicator_on.src = "images/home/home_performanceindicator_on.gif";
	home_profilext_on = new Image(); 
	home_profilext_on.src = "images/home/home_profilext_on.gif";
	home_teamanalysis_on = new Image(); 
	home_teamanalysis_on.src = "images/home/home_teamanalysis_on.gif";
	home_checkpoint_on = new Image(); 
	home_checkpoint_on.src = "images/home/home_checkpoint_on.gif";
	home_skillbuilder_on = new Image(); 
	home_skillbuilder_on.src = "images/home/home_skillbuilder_on.gif";

	nav_why_use_assessments_off = new Image(); 
	nav_why_use_assessments_off.src = "images/nav/nav_why_use_assessments_off.gif";
	nav_getting_started_off = new Image(); 
	nav_getting_started_off.src = "images/nav/nav_getting_started_off.gif";
	nav_faq_off = new Image(); 
	nav_faq_off.src = "images/nav/nav_faq_off.gif";
	nav_request_samples_off = new Image(); 
	nav_request_samples_off.src = "images/nav/nav_request_samples_off.gif";
	nav_contact_us_off = new Image(); 
	nav_contact_us_off.src = "images/nav/nav_contact_us_off.gif";
	home_calc_off = new Image(); 
	home_calc_off.src = "images/home/home_calc_off.gif";
	home_stepone_off = new Image(); 
	home_stepone_off.src = "images/home/home_stepone_off.gif";
	home_perspective_off = new Image(); 
	home_perspective_off.src = "images/home/home_perspective_off.gif";
	home_salesindicator_off = new Image(); 
	home_salesindicator_off.src = "images/home/home_salesindicator_off.gif";
	home_performanceindicator_off = new Image(); 
	home_performanceindicator_off.src = "images/home/home_performanceindicator_off.gif";
	home_profilext_off = new Image(); 
	home_profilext_off.src = "images/home/home_profilext_off.gif";
	home_teamanalysis_off = new Image(); 
	home_teamanalysis_off.src = "images/home/home_teamanalysis_off.gif";
	home_checkpoint_off = new Image(); 
	home_checkpoint_off.src = "images/home/home_checkpoint_off.gif";
	home_skillbuilder_off = new Image(); 
	home_skillbuilder_off.src = "images/home/home_skillbuilder_off.gif";
}

// Function to 'activate' images.
function imgOn(imgName) {
	if (document.images) {
 		document[imgName].src = eval(imgName + "_on.src");
	}
}

// Function to 'deactivate' images.
function imgOff(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "_off.src");
	}
}

//-->

