window.addEvent('domready', function(){
    
  var options = $$('.menuHor li');
  var sub;
  
  options.each(function(opt, i){
    sub = opt.getElement('ul');

    if(sub){
      sub.setStyle('display','block');
      sub.setStyle('opacity',0);

	    if (navigator.appName == "Microsoft Internet Explorer"){
			var rloc = (sub.getParent()).getSize().size.x;
	      sub.setStyles({
	      	'margin-left': - rloc + 'px'
	    	});
			}else{
			  sub.setStyles({
	      	'margin-top': 12 + 'px'
	    	});
			}

    var fx = new Fx.Styles(sub, {duration:300, wait:false});
    
    opt.addEvent('mouseenter', function(){
      fx.start({'opacity':1});
    });
    
    opt.addEvent('mouseleave', function(){
      fx.start({'opacity':0});
    });
    }
    
  });


/* Display a POPUP */
var myDate=new Date();
myDate.setFullYear(2009,8,24);
var today = new Date();

if(window.location=='http://confenats.cl/') var index = true;
if(window.location=='http://www.confenats.cl/') var index = true;
if(window.location=='http://confenats.cl/index.php') var index = true;
if(window.location=='http://www.confenats.cl/index.php') var index = true;
if(window.location=='http://confenats.cl') var index = true;
if(window.location=='http://www.confenats.cl') var index = true;


if (myDate>today && index){
	window.open('popup1.php','','width=800,height=600 0');
	window.open('popup2.php','','width=800,height=600 0')
}

});