
// Have Global Navigation MouseOver Swapped Static Ver.

function swaponBg(target) {
	if(window.opera){
		return true;
	}
	else{
		if (target.style.backgroundColor != "#ff0000")
		{
		    target.style.backgroundColor = '#006699';
			}
	}
}

function swapoffBg(target) {
	if(window.opera){
		return true;
	}
	else{
	    if (target.style.backgroundColor != "#ff0000")
		{
		    target.style.backgroundColor = '#44aadd';
			}
	}
}
