jQuery(function(){
    var anchor=window.location.hash.substring(1);
    if (anchor.length!=0) {
        getPlayer(anchor);
    } else {
        getPlayer(3);    
    }
});

function getPlayer(id) {
    $("div#content").html("");
    $("div#loader").show();
    setTimeout(function () { $("div#content").load("./cam"+id+'.shtml'); $("div#content").show(); $("div#loader").hide();}, 500);
}
    
