Window.onDomReady(function() {
	//cargarimagenes();
		
        var arrDsps = $$('.notiCont');
        var arrVtns = $$('.notiTitu');
        
        
        //arrDsps[0].setStyle ('color', 'red');
        
        ac = new Fx.Accordion(
            arrVtns,
            arrDsps,
            {
            	show: 0,
                duration: 400,
                alwaysHide: true
            }
        );
})	// Fin OnDomReady

window.onload = function(){
	//	RollOver Menu
	var menuImgs = $$('#menuSup img');
	
	var preCrg = new Array();
	
	menuImgs.each(function(linkM, id) {
		var imgCmb = '../stls/imgs/btn0' + (id + 1) + 'H.jpg';
		
		preCrg[id] = new Image();
		preCrg[id].src = imgCmb;
		
		linkM.addEvent('mouseenter', function () {
				imgAnt = linkM.getProperty('src');
				linkM.setProperty('src', preCrg[id].src);
			});
		
		linkM.addEvent ('mouseleave', function () {
				linkM.setProperty('src', imgAnt);
			});
		});
	};	// onLoad
