// JavaScript Document
	
	function displaymore(element,image){
		if(document.getElementById(element).style.display=="none"){
			document.getElementById(element).style.display = "block";
			currentpath = document.getElementById(image).src;
			position = currentpath.indexOf("_off");
			newpath = currentpath.substr(0,position) + "_on.gif";
			document.getElementById(image).src = newpath;
		}
		else{
			document.getElementById(element).style.display = "none";
			currentpath = document.getElementById(image).src;
			position = currentpath.indexOf("_on");
			newpath = currentpath.substr(0,position) + "_off.gif";
			document.getElementById(image).src = newpath;
		}
	}
	
	
	
	
	
	
	

