$(document).ready(function() {

    $("a", ".content").qtip({
        show: { delay: 0, effect: { type: "slide", length: 0} }, position: { corner: { target: 'topMiddle', tooltip: 'bottomMiddle'} }, style: { border: { width: 4, radius: 4, color: "#008CCF" }, tip: { corner: 'bottomMiddle', color: '#008CCF'} }
    });

    // Navigation highlights
    // Using the current path (e.g. /Section/Page)
    var path = location.pathname;

    // Handle links to the current path
    if (path) {
        $('a[href$="' + path + '"]').addClass('active');
    }

    //$.scrollTo("#menu", 400);

    // Handle links to parts of the current path
    //    var parts = path.split('/')
    //    for (i = 0; i < parts.length; i++) {
    //        if (parts[i].length > 0) {
    //            $('a[href$="/' + parts[i] + '"]').addClass('active');
    //        }
    //    }
});

