
/**
 *  File     : EDS_PrimaryNav.js
 *  Author(s)    : Naveen Kumar
 *  Creation Date: Feb 23, 2010
 *  Functionality: This file contains all navigation related js function.
 *  Dependencies : N/A
 *  Copyright    : P&G
 *  Modifications: <Author> <Date> <Description of Modification>
 */

var selectedId = "0";
function changeImageOnMouseOver(id, cdn) {
	if (selectedId != id) {
		var imagePath = cdn + "/pgeds/en_US/data_root/images/cframe/nav_" + id + "_over.gif";
		(document.getElementById(id)).getElementsByTagName("img")[0].src = imagePath;
	}
}
function changeImageOnMouseOut(id, cdn) {
	if (selectedId != id) {
		var imagePath = cdn + "/pgeds/en_US/data_root/images/cframe/nav_" + id + "_off.gif";
		(document.getElementById(id)).getElementsByTagName("img")[0].src = imagePath;
	}
}
function highLightPrimaryTab(id, cdn) {
	selectedId = id;
	var imagePath = cdn + "/pgeds/en_US/data_root/images/cframe/nav_" + id + "_on.gif";
	(document.getElementById(id)).getElementsByTagName("img")[0].src = imagePath;
}

	

// for header logo 
function changeHeaderImageOnMouseOver(id, cdn) {
	if (selectedId != id) {
		var imagePath = cdn + "/pgeds/en_US/data_root/images/cframe/"+ id + "_over.jpg";
		(document.getElementById(id)).getElementsByTagName("img")[0].src = imagePath;
	}
}
function changeHeaderImageOnMouseOut(id, cdn) {
	if (selectedId != id) {
		var imagePath = cdn + "/pgeds/en_US/data_root/images/cframe/"+ id + "_off.jpg";
		(document.getElementById(id)).getElementsByTagName("img")[0].src = imagePath;
	}
}
