function mouseOverMenu(menItem)
{
	var menuCell = document.getElementById(menItem);
	menuCell.style.backgroundImage = 'url(images/bg_' + menItem + '.gif)';
	menuCell.style.color = "#000";
	menuCell.style.cursor = "pointer";
}

function mouseOutMenu(menItem)
{
	var menuCell = document.getElementById(menItem);
	menuCell.style.backgroundImage = 'url()';
	menuCell.style.color = "#fff";
	menuCell.style.cursor = "pointer";
}

function goToPage(page)
{
	window.location='/franchisecongres_' + page + '.php';	
}
