// JavaScript Document by Adam Maidment [Well Studio] October 2008

function displayRow(varRow){	
	var row = document.getElementById("Panel"+varRow);	
	var id_img = document.getElementById("PanelBar"+varRow);
	var displayAll = document.getElementById("ShowHide");
	
	if (row.style.display == '')  {
		row.style.display = 'none';	
		id_img.src = "/images/button_collapsible_arrow.gif";
		displayAll.innerHTML = "Show all [+]";
	}
	else {
		row.style.display = '';
		id_img.src = "/images/button_collapsible_arrow-down.gif";	
		displayAll.innerHTML = "Hide all [-]";
	}	
}

function closeAll(varRow){	
	var row = document.getElementById("Panel"+varRow);	
	var id_img = document.getElementById("PanelBar"+varRow);			
	id_img.src = "/images/button_collapsible_arrow.gif";	
	row.style.display = 'none';		
}

function openAll(varRow){	
	var row = document.getElementById("Panel"+varRow);	
	var id_img = document.getElementById("PanelBar"+varRow);			
	id_img.src = "/images/button_collapsible_arrow-down.gif";	
	row.style.display = '';	
}

function actionCloseAll(numberSections) {

	var displayAll = document.getElementById("ShowHide");
	
	if(displayAll.innerHTML == "Show all [+]"){
		for(i=1;i<=numberSections;i++) {
			openAll(i);
		}
		displayAll.innerHTML = "Hide all [-]";
	}
	else if(displayAll.innerHTML == "Hide all [-]") {
		for(i=1;i<=numberSections;i++) {
			closeAll(i);
		}
		displayAll.innerHTML = "Show all [+]";
	}		
}

function All(numberSections) {
	for(i=1;i<=numberSections;i++) {
		displayRow(i);
	}
}

function imageOver(varRow){	
	var row = document.getElementById("Panel"+varRow);
	var img = document.getElementById("PanelBar"+varRow);			
	
	
	if (row.style.display == '')  {
		img.src = "/images/button_collapsible_arrow.gif";
	}
	else {
		img.src = "/images/button_collapsible_arrow-over.gif";	
	}
}

function imageOut(varRow){	
	var row = document.getElementById("Panel"+varRow);
	var img = document.getElementById("PanelBar"+varRow);			
	
	
	if (row.style.display == '')  {
		img.src = "/images/button_collapsible_arrow-down.gif";
	}
	else {
		img.src = "/images/button_collapsible_arrow.gif";	
	}
}