function changeVideo(which) {	if (which == 'salon') { 		show("v_salon"); 		hide("v_rest"); 		hide("v_jacuzzi"); 		hide("v_habplus"); 	}	else if (which == 'rest') { 		hide("v_salon"); 		show("v_rest"); 		hide("v_jacuzzi"); 		hide("v_habplus"); 	}	else if (which == 'jacuzzi') { 		hide("v_salon"); 		hide("v_rest"); 		show("v_jacuzzi"); 		hide("v_habplus"); 	}		else if (which == 'habplus') { 		hide("v_salon"); 		hide("v_rest"); 		hide("v_jacuzzi"); 		show("v_habplus"); 	}		else {}}function verTarifas(which) {	if (which == 'see') { 		show("t_tarifas"); 	}	else if (which == 'hide') { 		hide("t_tarifas"); 	}	else {}}