function over(imagen, obj){
	//document.getElementById(obj).style.cursor = "pointer";
	document.getElementById(obj).src = "buttons/"+imagen;
}
function out(imagen, obj){
	//document.getElementById(obj).style.cursor = "default";
	document.getElementById(obj).src = "buttons/"+imagen;
}
