/* Individual Expand/Collapse */
function viewsvc(root){
	root.getElementsByTagName('div').item(1).style.display=(root.getElementsByTagName('div').item(1).style.display=="block") ? "none" : "block";
}

/* FAQ - IE Hover - Allows SPANs used for Qs to hover like A tags by applying IEhover class @ page load */
ieHover = function() {
	var sfEls = document.getElementById("svc_content").getElementsByTagName("span");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" IEhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" IEhover\\b"), ""); 
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", ieHover);

