function tabOn(tab){
	elemento=document.getElementById(tab);
	elemento.setProperty('class', 'seleccionado');
}

function tabOff(tab){
	elemento=document.getElementById(tab);
	elemento.setProperty('class', '');
}