//labels

$(document).ready(function () {
    $('.jLabel').jLabel();
});


//infoSlide

function showAbout() {
    $("#aboutTab").animate({ opacity: "toggle" }, "slow");
    $("#whoTab").animate({ opacity: "hide" }, "slow");
}

function showWho() {
    $("#whoTab").animate({ opacity: "toggle" }, "slow");
    $("#aboutTab").animate({ opacity: "hide" }, "slow");
}

//work out the magin needed for blog positioning below top story

$(document).bind("ready", function() {
   $(".bottomContent").css("marginTop",(parseInt($(".topStory").css("height").substring(0, $(".topStory").css("height").length - 2)) - 150) + "px");
});