﻿// Archivo JScript

/**FUNCION PARA LOS BOTONES DEL MENU PRINCIPAL**/

function mostarBoton(capa){
    //alert("entro");
    var bt1;
    var bt1Sobre;    
    bt1 = document.getElementById(capa);    
    bt1Sobre = document.getElementById(capa + "Sobre");    
    bt1.style.display = 'none';    
    bt1Sobre.style.display = 'inline';    
}

function ocultarBoton(capa){
    var bt1;
    var bt1Sobre;    
    bt1 = document.getElementById(capa);    
    bt1Sobre = document.getElementById(capa+"Sobre");    
    bt1.style.display = 'inline';    
    bt1Sobre.style.display = 'none'; 
}

/**FUNCION PARA ME MANEJO DE LAS CAPAS EN PRODUCTOS **/

function manejoProductos(div,boton){   
	if (document.getElementById(div).style.display == 'none'){	
		//muestra la capa
		$("#"+div+"").slideDown("fast");
		document.getElementById(boton).style.background = 'url(images/botones/open.gif)';
		document.getElementById(boton).style.width = '29px;'
		document.getElementById(boton).style.height = '29px;'	
	}else{
		//esconde la capa
		$("#"+div+"").slideUp("fast");		
		document.getElementById(boton).style.background = 'url(images/botones/close.gif)';
		document.getElementById(boton).style.width = '29px;'
		document.getElementById(boton).style.height = '29px;'
	}	
}

