function SetBotoneraActions()
{
	var botones = ['quienessomos', 'dondeestamos', 'dermatologiaclinica', 'dermatologiaquirurgica', 'dermatologiaoncologica', 'dermatologiaestetica', 'clinicasespecializadas', 'prensa', 'newsletter'];
	
	for (var i = 0; i < botones.length; i++)
	{
		var btn 	= document.getElementById(botones[i]);
		
		if (btn != null)
		{
			var btnLink = btn.getElementsByTagName('a');
			btnLink		= btnLink[0];
			
			btn.link = btnLink;
			
			btn.onclick 	= function() { location.href = this.link; };
			btn.onmouseover = function() { if (this.className != 'forced') { this.className = 'over'; }};
			btn.onmouseout 	= function() { if (this.className != 'forced') { this.className = ''; }};
		}
	}
	
	var btnIrInicio = document.getElementById('irInicio');
	
	btnIrInicio.onmouseover = function() { this.src = '/imagenes/btn_home_over.gif'; };
	btnIrInicio.onmouseout 	= function() { this.src = '/imagenes/btn_home.gif'; };
	
	var btnIrContacto = document.getElementById('irContacto');
	
	btnIrContacto.onmouseover = function() { this.src = '/imagenes/btn_contacto_over.gif'; };
	btnIrContacto.onmouseout 	= function() { this.src = '/imagenes/btn_contacto.gif'; };
}
