/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


$(document).ready(function(){

    initCareerSwitch();
    makeCareerSwitch();
    
    function initCareerSwitch(){
        $('.a_career').hide();
        $('#a1').fadeIn(800);
        $('#tabnav #a1').addClass("active");
    }



    function makeCareerSwitch()
    {
      
        $('#tabnav a').click(function()
        {
            $(".active").removeClass("active"); //for css styling
            $(this).addClass("active");
            var id = $(this).attr('id');
            var theDiv  = '#'+id;
            $('.a_career').fadeOut(200);
            $(theDiv).fadeIn(800);
           
        });
    }


});
