// ----------------------------------------------------------------------------------
// -     COPYRIGHT - Gary Flaxmer and FanZone.co.uk 2008.  All rights reserved.     -
// ----------------------------------------------------------------------------------

var CSS_TAB_ON = "tabOn";
var CSS_TABLOCK_ON = "tBlockOn";

$(document).ready(function() {
    $("#tabs>li").not(":last").find("a").each(function(i) {
        $(this).click(function() {
            $("#tabs>li").removeClass(CSS_TAB_ON);
            $(this).parent().addClass(CSS_TAB_ON);
            $("#tabBlocks>div").removeClass(CSS_TABLOCK_ON);
            $("#tabBlocks").find("#tabSection" + i).addClass(CSS_TABLOCK_ON);
        });
    });

    $("#tabs>li:last>a").click(function() {
        $("#tabs>li").removeClass(CSS_TAB_ON);
        $(this).parent().addClass(CSS_TAB_ON);
        $("#tabBlocks>div").addClass(CSS_TABLOCK_ON);
    });
});

var _pp = false;
function printPreview() {
    if (_pp)
        $("link[@href*=Print.css]").attr("media", "print");
    else
        $("link[@href*=Print.css]").attr("media", "all");
    _pp = !_pp;
}
