
/**
 *  File     : EDS_TBS.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>
 */


function changeTBSImageOnMouseOver(id, cdn) {
		
		 imageName=(id.substring(0,id.indexOf("##")));
		
		if(document.getElementById(id+"toolTips")){
			document.getElementById(id+"toolTips").style.display="block";
		}
		
		var imagePath = cdn + "/pgeds/en_US/data_root/images/newproduct/tbs_buttons/"+ imageName + "_over.gif";
		(document.getElementById(id)).getElementsByTagName("img")[0].src = imagePath;
		

}
function changeTBSImageOnMouseOut(id, cdn) {
		imageName=(id.substring(0,id.indexOf("##")));
		
		
		if(document.getElementById(id+"toolTips")){
			document.getElementById(id+"toolTips").style.display="none";
		}
		var imagePath = cdn + "/pgeds/en_US/data_root/images/newproduct/tbs_buttons/"+imageName + ".gif";
		(document.getElementById(id)).getElementsByTagName("img")[0].src = imagePath;

}
