﻿
$(document).ready(function() {
    
    init(true);
    
    $("#download_tabs a").click(function() {
        
        $("#download_tabs a").removeClass("on");
        $(".section_content").hide();
        
        $("#"+this.id).addClass("on");
        $("#"+this.id+"_content").fadeIn(500);
        
        return false;
    });
});

function init(isLanding)
{
    $("#area_download").addClass("area_downloadJS");
    $(".hidden_anchor").hide();
    if(self.document.location.hash != "") 
    {
        $("#download_tabs a").removeClass("on");
        $(".section_content").hide();
        $(self.document.location.hash+"_section_content").show();
        $(self.document.location.hash+"_section").addClass("on");
    } 
    else if(isLanding) 
    {
        $("#download_tabs a").attr("href", "#");
        $(".section_content").hide();
        $("#activities_section_content").show();
        $("#activities_section").addClass("on");
    }
}