
// Have Global Navigation MouseOver Swapped Static Ver.

function swaponBg(target) {
	if(window.opera){
		return true;
	}
	else{
		target.style.backgroundColor = '#4D4D4D';
	}
}

function swapoffBg(target) {
	if(window.opera){
		return true;
	}
	else{
		target.style.backgroundColor = '#808080';
	}
}
