// -----------------------------------------------------------------------
//TEMPLATE: 		/includes/js/navigation.js
//------------------------------------------------------------------------  

function _onmouseover(img) {
	str = img.src;
	newstr=str.replace(/_off/i, "_on"); 
	img.src = newstr;
}

function _onmouseout(img) {
	str = img.src;
	newstr=str.replace(/_on/i, "_off");
	img.src = newstr;
}

function setaction(theaction, theaction2 ){
	document.accthistory.action.value = theaction;	
	document.accthistory.action2.value = theaction2;	
	document.accthistory.submit();
	return true;
}
function _RollOverText(obj) {
	//if(document.all)
	//	{
			obj.style.backgroundColor='c0c0c0';
			obj.style.color='blue';
			obj.style.textDecoration = 'underline'; 
			obj.style.cursor	 = 'hand';
	//	}
	//else
	//	if(document.layers)
	//		{
	//			obj.backgroundColor='green';
	//		}
}

function _RollOutText(obj,color)  {
	//if(document.all) {
			obj.style.backgroundColor= color;
			obj.style.color='black';
			obj.style.textDecoration = 'none'; 
			obj.style.fontWeight     = "normal"
			obj.style.fontStyle      = 'normal'; 
	//} else if(document.layers) {
	//			obj.backgroundColor='white';
	//}
}
