// JavaScript Document

function NavCurrentPage(pageid)
{
	
	
}

function cellColorChange(row,action,class){
	if(action == "over"){
		document.getElementById(row).className = "result_row-hover"
	}else{
		document.getElementById(row).className = "result_row"
	}
}

function jumpPage(url) {
  	document.location = url;
}

function jumpArea(x){
	if (document.formArea.jumpmenu.value != "null") {
		document.location.href = x
	}
}
function jumpLocation(x){
	if (document.formLocation.jumpmenu.value != "null") {
		document.location.href = x
	}
}
function jumpType(x){
	if (document.formType.jumpmenu.value != "null") {
		document.location.href = x
	}
}

function MenuRollover(element,action)
{
	var MenuItem = document.getElementById(element);
	if (action == 'hover')
	{
		MenuItem.className = 'HomeMenuButton-Hover';
	} else {
		MenuItem.className = 'HomeMenuButton';
	}
}