var root;
var total;

window.addEvent("domready", function(){
    $ES("#home,#about,#collaborators,#faq,#help","#menu").addEvent("mouseenter", function(){
        if(this.id == page_id)
            return;
        this.getChildren().setProperty('src', 'images/menu_' + this.id + '_dark.png');
    }).addEvent("mouseout", function(){
        if(this.id == page_id)
            return;
        this.getChildren().setProperty('src', 'images/menu_' + this.id + '.png');
    });
    $(page_id).getChildren().setProperty('src', 'images/menu_' + page_id + '_dark.png');


    total = Cookie.get("total");

    if(total === false){
        Cookie.set('total', '0', {path: "/", duration: 5000});
        total = 0;
    }
    $('total_count').setHTML(total);
    new Asset.images(["images/menu_home_dark.png", "images/menu_about_dark.png", "images/menu_faq_dark.png", "images/menu_help_dark.png", "images/menu_collaborators_dark.png"]);
    root = $$('base')[0].getProperty('href');
    
}); 

                             