// JavaScript core for bodas.Memoralia.es


// Var y Functions de SECCIONES para menu activo

/* SECCIONES

Inicio
Concepto
Productos
Contacto
Localizacion

*/
// Variable de estilo para aplicar.
style_menu ="style='padding-top:15px;color:#4f0133;'";

function id_seccionactiva () {
	if (seccion=="Inicio") {
		document.write(id='menu_li_active');
		
	}	else
		document.write();
	}
	
	
// function for show and hide elements by FX, oculta y muestra divs con id
function showHide(inID) {
  if (document.getElementById(inID).style.display == 

'none') {
         document.getElementById(inID).style.display = 

'block';
               } else {
         document.getElementById(inID).style.display = 

'none';
           }
}


