$(document).ready(function()
{
		
	Shadowbox.init();
	
	//***************************************
	// CARGAMOS BANNERS
	//***************************************
	
	
	
    //***************************************
	// CONTROLAMOS ROLLOVER CATEGORIAS
	//***************************************
	$(".imgCategoria").mouseover(function()
	 {
	 	$(this).css({ border: "2px solid #111111" });
    	
     });
     
    $(".imgCategoria").mouseout(function()
	 {
	 	$(this).css({border: "2px solid #dedede" });
    	
     });
   
});
