function catOver(theCat){

	mainImg = eval(document.getElementById(theCat));
	mainImg.className = "theCatMainOver";
}

function catOut(theCat){
	
	mainImg = eval(document.getElementById(theCat));
	mainImg.className = "theCatMain";
}