window.onload = function() {
    choosePage(document.location.href);
}

function choosePage(p) {
    if((typeof p)=='object') {
        str = p.href;
    } else {
        str = p;
    }
    if(str.match(/#/g, '')) {
        curID = str.replace(/.*#/g, '');
    } else {
        curID = false;
    }
    if($('talents')) {
        if(!curID) curID='jt-intro';
        $('jt-intro').hide();
        $('jt-stages').hide();
        $('jt-alternance').hide();
        $('jt-diplomes').hide();
        $(curID).show();
    }
    if($('vj')) {
        if(!curID) curID='vj-dispositifs';
        $('vj-dispositifs').hide();
        $('vj-programme').hide();
        $(curID).show();
    }

}