function effect(barid) {
	var element = document.getElementById(barid);
	element.style.backgroundColor = 'transparent'; 
	element.style.backgroundPosition = '0px -49px';
}

function head(barid) {
	var element = document.getElementById(barid);
	element.style.visibility = "hidden"; 
}
