// JavaScript Document
// class swap for hoverstates
function FPA_classSwapHover() {
var arguments = FPA_classSwapHover.arguments;

for (var i = 0; i < arguments.length; i+=2)
{
	var cc=i+1;
	var getId=arguments[i];
	var getClass=arguments[cc];
	var getClassName=document.getElementById(getId).className;
	
	if (getClassName != 'infoNavOneActive' && getClassName != 'infoNavTwoActive' && getClassName != 'infoNavThreeActive' && getClassName != 'infoNavFourActive'){
	document.getElementById(getId).className=getClass;
	}
}
}