function changeImage(tdid,image,lid,color) {
	
	document.getElementById(tdid).style.backgroundImage = image;
	document.getElementById(lid).style.color = '#'+color+'';
}
function switcher(status,id){
	
		if(status =='on'){
			document.getElementById(id).style.visibility ='visible';
			}
		if(status=='off'){
			document.getElementById(id).style.visibility ='hidden';
			}
}
	