function DisplayBlock(divId) {
	var arrow = "arrow_" + divId;
	var theDivId = "gallery" + divId;
	if(document.getElementById){
		imgElem=document.getElementById(theDivId);
		if (imgElem.style.display == "block") {
			imgElem.style.display = "none";
			if (theDivId=="galleryportfolios") {
				document.getElementById('arrow_portfolios').src= "http://www.glyndavies.com/images/circle.gif";
				//document.getElementById('arrow_portfolios').src= "http://127.0.0.1/work/Aura_Concepts/Glyn_Davies/images/circle.gif";
			}else{
				if(document.getElementById(arrow)){
					 document.getElementById(arrow).src = "http://www.glyndavies.com/images/circle.gif";
					 //document.getElementById(arrow).src = "http://127.0.0.1/work/Aura_Concepts/Glyn_Davies/images/circle.gif";
				 }
			}
		} else {
			if (imgElem.style.display == "none") {
				imgElem.style.display = "block";
				if (divId=="portfolios") {
					document.getElementById('arrow_portfolios').src= "http://www.glyndavies.com/images/circle.gif";
					//document.getElementById('arrow_portfolios').src= "http://127.0.0.1/work/Aura_Concepts/Glyn_Davies/images/circle.gif";
				}else{
					if(document.getElementById(arrow)) {
						document.getElementById(arrow).src = "http://www.glyndavies.com/images/circle.gif";
						//document.getElementById(arrow).src = "http://127.0.0.1/work/Aura_Concepts/Glyn_Davies/images/circle.gif";
					}
				}
			}
		}
		
	
	}
}


function DisplayShopBlock(divId) {
	var theDivId = "gallery" + divId;
	if(document.getElementById){
		imgElem=document.getElementById(theDivId);
		if (imgElem.style.display == "block") {
			imgElem.style.display = "none";
		} else {
			if (imgElem.style.display == "none") {
				imgElem.style.display = "block";
			}
		}
	}
}