function hideP(domid){
		Effect.toggle(domid,'blind');
}
/*
function showAll(){
	//grab the elements to toggle
	var pautomation=document.getElementById('pautomation');
	var psupport=document.getElementById('psupport');
	var ptraining=document.getElementById('ptraining');
	var pdatabase=document.getElementById('pdatabase');
	var button = document.getElementById('showallbutton');
	
	//create an array to loop through
	parray= new Array(pautomation,psupport,ptraining,pdatabase);
	
	//loop through the array
	if(button.getAttribute('value')=="Show All"){
		for(var i=0; i<parray.length; i++){
			if(parray[i].getAttribute("style")=="display: none;"){
				Effect.toggle(parray[i],'blind');
				button.setAttribute("value","Hide All");
			}else if(typeof parray[i].getAttribute("style")=='object'){//it's IE
				if(parray[i].getAttribute("style").cssText=="DISPLAY: none"){
					Effect.toggle(parray[i],'blind');
					button.setAttribute("value","Hide All");
				}
			}
		}
	}else{
		for(var i=0; i<parray.length; i++){
			if(parray[i].getAttribute("style")!="display: none;"){
				Effect.toggle(parray[i],'blind');
				button.setAttribute("value","Show All");
			}else if(typeof parray[i].getAttribute("style")=='object'){//it's IE
				alert(parray[i].getAttribute("style").cssText);
				if(parray[i].getAttribute("style").cssText=="DISPLAY: none"){
					Effect.toggle(parray[i],'blind');
					button.setAttribute("value","Hide All");
				}
			}
		}
	}
}
*/
