

$(document).ready(function() {

    // Add class to current links (todo: check in ie)
    $(".menu a").each(function() {
        if(this.href == window.location.href.split("#")[0]) {
            $(this).addClass("current");
        }
    });


    // Google Page Tracking
    //$.trackPage('UA-5214256-6');


    $('#flash-notice a').click(function(){
        $('#flash-notice').hide('slide');
    });

    
});


