function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      oldonload();
      func();
    }
  }
}

function menuActivo() {

	if(document.getElementById('familia'))
		{
		document.getElementById('menu_familia').className='activo';
		}
	if(document.getElementById('materia'))
		{
		document.getElementById('menu_materia').className='activo';
		}
	if(document.getElementById('elaboracion'))
		{
		document.getElementById('menu_elaboracion').className='activo';
		}
	if(document.getElementById('productos'))
		{
		document.getElementById('menu_productos').className='activo';
		}
	if(document.getElementById('puntosventa'))
		{
		document.getElementById('menu_venta').className='activo';
		}
	if(document.getElementById('ven_casa'))
		{
		document.getElementById('menu_casa').className='activo';
		}
	if(document.getElementById('album'))
		{
		document.getElementById('menu_album').className='activo';
		}
	if(document.getElementById('leche'))
		{
		document.getElementById('menu_leche').className='activo';
		}
}

addLoadEvent(menuActivo);