﻿// JScript File

function onMenuMouseOver(sid, eInfo)
{
	switchClasses(sid, eInfo);
}
function onMenuMouseOut(sid, eInfo)
{
	switchClasses(sid, eInfo);
}
function switchClasses(sid, eInfo)
{
	var sid = eInfo.getItem().getValue();
	var img = document.getElementById("img" + sid);
	var txt = document.getElementById("txt" + sid);	

	if(img && txt)
	{
		if(img.className.indexOf("_f2") != -1)
		{			
			img.className = img.className.replace(/_f2/, "");			
			txt.style.visibility = "visible";
		}
		else
		{
			img.className = img.className + "_f2";			
			txt.style.visibility = "hidden";
		}
	}	
}
function switchCart()
{
	var img = document.getElementById('imgCart');
	var txt = document.getElementById('txtCart');
	
	switchImg(img);
	if(img.src.indexOf("_f2") != -1)
		txt.style.color = "#ffffff";
		
	else
		txt.style.color = "#99AEBA";
}
