/**
 * Created by JetBrains PhpStorm.
 * User: Ad-Jan
 * Date: 22-12-11
 * Time: 11:34
 * To change this template use File | Settings | File Templates.
 */
$(document).ready(function() {
    // Open pdf in new window
    $("a.external").bind('click', function() {
        window.open(this.href);
        return false;
    });
    // Highlight selected menu items in menu
    if (active_page.length > 0) {
        $('#leftColumn1 li a').each(function() {
            var url = $(this).attr('href').replace('/', '');
            if (url == active_page) {
                $(this).addClass('active');
                return false;
            }
        });
    }
});


