function showhide(what)
{
	hideAll();
	
	switch (what){
	case "block-mision":
	obj = "mision";
	break;
	case "block-valores":
	obj = "valores";
	break;
	}
	
	document.getElementById(what).style.display='block';
	document.getElementById(obj).src="http://makro.campustercertermino.com/theme/standardwhite/btn_"+obj+"_over.jpg";

	
}

function hideAll(){
	document.getElementById('block-mision').style.display = 'none';
	document.getElementById('mision').src='http://makro.campustercertermino.com/theme/standardwhite/btn_mision_idle.jpg';
	document.getElementById('block-valores').style.display = 'none';
	document.getElementById('valores').src='http://makro.campustercertermino.com/theme/standardwhite/btn_valores_idle.jpg';
}

window.onload = function() {
	showhide('block-mision');
	
	document.getElementById('panel-tutoriales').onmouseover = function(){
		if(idPanel){
			clearInterval(idPanel);	
		}
		showTutorials();
	}
	
	document.getElementById('panel-tutoriales').onmouseout = function(){
		idPanel = setTimeout("hideTutorials()", 1500);
	}
}

function showTutorials(){
	document.getElementById('panel-tutoriales').style.display='block';
}

function hideTutorials(){
	document.getElementById('panel-tutoriales').style.display='none';
}