function show(value,id){
		document.getElementById(id).style.display=value;	
}

function setStyle(obj,style) {
	obj.className=style;
}

function setOver(id,style) {
	document.getElementById(id).className=style;
	

}