//--use for main menu mouseover image...

function linkLocation(location) { 
           window.location.href=location;
}
function changeTo(callerId,newSrc) {
	document.getElementById(callerId).src = newSrc;
}

//--use for the sub menu

function showDiv(id){
	var div = document.getElementById(id);
	if (!div) return;
	//alert("ggg "+window.location.href);
	div.style.display = 'block';
	div.style.position = 'absolute';
	div.style.padding = '0';
}
function hideDiv(id){
	var div = document.getElementById(id);
	if (!div) return;
	div.style.display = 'none';
	div.style.position = 'absolute';
}

function openLink(link){
   location.href=link;
}		


