
//MUESTRA CONTENIDO --> BY PANA
function hidediv() {
	var sep_accesorio = $$("div#sec_accesorio div.sep_accesorio");
	sep_accesorio.each ( function (el){
		el.style.display = 'none';	
	});	
}

//MUESTRA / OCULTA DIV --> By Tortillo
function showhidediv(id) {
	var sep_accesorio = $$("div#sec_accesorio div.sep_accesorio");
	var i = 0;
	sep_accesorio.each( function (el){
		if (el.style.display == 'none' && id == i) {
			el.appear();
		} else if (el.style.display != 'none'){
			el.fade();
		}
		i++;	
	});
}

//MUESTRA CONTENIDO --> BY PANA
function charge_content() {
	//cargar = ID a Ocultar / Mostrar
	$("cargar").style.display = 'none';
	$("cargar").appear();
}




