function bgOn (thisId) {
	
	

	
	
	document.getElementById(thisId).style.backgroundImage = "url(Templates/images/layout/" + thisId + ".png)";	
	document.getElementById(thisId).style.backgroundPosition = "center";
	document.getElementById(thisId).style.backgroundRepeat = "no-repeat";

}




function bgOff (thisId) {
	
	document.getElementById(thisId).style.backgroundColor = "transparent";
	document.getElementById(thisId).style.backgroundImage = "none";
	document.getElementById(thisId).style.color = "#000000 !important";
}

