  
	Event.observe(window, 'load', function(){
        $$('div.redHover').each(function(el){
              el.onmouseover  = function(){ this.addClassName(this.up('li').readAttribute('id')); }
              el.onmouseout  = function(){  this.removeClassName(this.up('li').readAttribute('id'));  }
        });
        $$('div.redHoverWide').each(function(el){
              el.onmouseover  = function(){ this.addClassName(this.up('li').readAttribute('id')); }
              el.onmouseout  = function(){  this.removeClassName(this.up('li').readAttribute('id'));  }
        });
    });
    
	function popUp(URL) { 
		day = new Date();
		id = day.getTime();
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=' + screen.width + ',height=' + screen.height + ',left = 0,top = 0');");
	}
