$(document).ready(function(){
   /* This code is executed after the DOM has been completely loaded */
 $('a').click(function(e){
        // If a link has been clicked, scroll the page to the link's hash target:
        $.scrollTo( this.hash || 0, 500);
        e.preventDefault();
        $('a').removeClass("current");
        $(this).addClass("current");

    });
    
    $('a.jobdesclink').click(function () {
   	$('#jobdesc').fadeToggle("fast");        
    });

});

