/*          */
/*  HOME    */
/*          */

function homeDisplay(img){
    $("#cache").fadeOut(1000);
}
    
function home(){
    $("#home_image").onImagesLoad({
        selectorCallback: homeDisplay
    });
}

/*                  */
/*  GENERAL INIT    */
/*                  */

$(document).ready(function(){
    /*   on menu click : fadeout content + change location   */
    $("#menu a, #submenu a").click(function(){

        var href = $(this).attr("href");

        if ($("#content > div").size()){
                $("#content > div").fadeOut(function(){
                    if ($(this).index() == $("#content > div:last").index()){
                        window.location.href = href;
                    }
                });
            return false;
        }
    });
});

function trace(msg){
    console.log(msg);
}
