function carga_url (URL, capa) {
	$(document.getElementById(capa)).html('');
	  $(document.getElementById(capa)).load(URL,function(){
		$(document.getElementById(capa)).fadeIn("slow");
	  });
}

function msg_change (capa,htmltext) {
	$(document.getElementById(capa)).html(htmltext);
}

function displayCapa (capa,status) {	
	if (status!=undefined && status!='') {
		document.getElementById(capa).style.display=status;
	} else {
		if (document.getElementById(capa).style.display=="block") {
			document.getElementById(capa).style.display="none";
		} else {
			document.getElementById(capa).style.display="block";
		}
	}
}

function productFamilyOpen (cod) {
	var capa='categoria'+cod;
	var flecha='flecha'+cod;
	var status=document.getElementById(capa).style.display;
	if (status=='block') {
		display_capas2 (capa,'none');
		document[flecha].src="../skins/2007/imagenes/buttonarrow.gif";
	} else {
		carga_url('producto.php?c='+cod+'',capa);	
	}
}


// Igualar capas
function setH() {
	var maxH = Math.max(document.getElementById('moduloNoticias').offsetHeight,document.getElementById('moduloOfertas').offsetHeight);
	document.getElementById('moduloOfertas').style.height=maxH+'px';
	var maxH = Math.max(document.getElementById('moduloNoticias').offsetHeight,document.getElementById('moduloNoticias').offsetHeight);
	document.getElementById('moduloOfertas').style.height=maxH+'px';
	document.getElementById('moduloNoticias').style.height=maxH+'px';
	}
if (document.getElementById('moduloNoticias') && document.getElementById('moduloOfertas')) {
	window.onload = setH;
}