/*
//Author        : Muhammad Azhar Butt | A2Z Creatorz
//Date of mod   : August 25th 2006
//Functionality : Hide and show divs in the FAQs section
*/

function HideDiv(total, div){
/*	The parameter total has the number of questions in the page, 
	div has number of the selected question */ 		
var i=0
if (document.getElementById("Faq" + div).style.display == 'block') {
	document.getElementById("Faq" + div).style.display = 'none';		
	document.getElementById("a" + div).className ='more';
	}	
else {
	for (i=1;i<=total;i++) {
		document.getElementById("Faq" + i).style.display = 'none';		
		document.getElementById("a" + i).className ='more';
		}	
	document.getElementById("Faq" + div).style.display = 'block';
	document.getElementById("a" + div).className ='more2';
	}	
}                                                                      
