// Pop up for PCS Navigation - Joel Wantiez

function over(){
	document.getElementById("popup").style.display = "Block";
	document.getElementById("FAQ").style.backgroundColor = "#E1257A";
	document.getElementById("FAQ").style.height = "30px";
	document.getElementById("FAQ").style.lineHeight = "30px";

}

function out(){
	document.getElementById("popup").style.display = "None";
	document.getElementById("FAQ").style.backgroundColor = "";
	document.getElementById("FAQ").style.height = "25px";
	document.getElementById("FAQ").style.lineHeight = "25px";

}


