function show(id_to_show, array_to_hide) {
 	document.getElementById(id_to_show).style.display = 'block';
    for(var x = 0; x < array_to_hide.length; x++) 
  		document.getElementById(array_to_hide[x]).style.display = 'none';			
}
