
// Have Global Navigation MouseOver Swapped Static Ver.

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

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

