function navHighlight(id, type)
{
	if(document.getElementById(id) && type == 'gif')
	{	//alert('start1');
		var imageName = "btn_" + id + "_over";
		//var imagePath = "url('/iams/en_US/data_root/images/dropdowns/" + imageName + ".gif')";
		var imagePath = "../data_root/images/Angel/landing/" + imageName + ".gif";
	
		document.getElementById(id).getElementsByTagName('img')[0].src = imagePath;	
			//alert('end1');
	}
	
	if(document.getElementById(id) && type == 'jpg')
	{	//alert('start2');
		var imageName = "btn_" + id + "_over";
		//var imagePath = "url('/iams/en_US/data_root/images/dropdowns/" + imageName + ".gif')";
		var imagePath = "../data_root/images/Angel/landing/" + imageName + ".jpg";
		document.getElementById(id).getElementsByTagName('img')[0].src = imagePath;	
			//alert('end2');
	}


}

function navHighlightOff(id, type)
{

	if(document.getElementById(id) && type == 'gif')
	{		
		var imageName = "btn_" + id;
		//var imagePath = "url('/iams/en_US/data_root/images/dropdowns/" + imageName + ".gif')";
		var imagePath = "../data_root/images/Angel/landing/" + imageName + ".gif";
		//alert('start3');
		document.getElementById(id).getElementsByTagName('img')[0].src = imagePath;
			//alert('end3');
	}
	
	if(document.getElementById(id) && type == 'jpg')
	{		//alert('start4');
		var imageName = "btn_" + id;
		//var imagePath = "url('/iams/en_US/data_root/images/dropdowns/" + imageName + ".gif')";
		var imagePath = "../data_root/images/Angel/landing/" + imageName + ".jpg";
		document.getElementById(id).getElementsByTagName('img')[0].src = imagePath;
		//alert('end 4');
	}


}