﻿// initialise plugins and preload/cache images
$(function() {
    $.preloadCssImages();
    $(".current").removeClass("current");
    //var path = location.pathname.substring(17);
    var path = window.location.pathname.replace(/\//gi, "");
    if (path) {
        $('#header_left .sf-menu li a[@href$="' + path + '"]').parent().addClass("current");
    }
});
jQuery(function() {
    jQuery('ul.sf-menu').superfish({ animation: { opacity: 'show', height: 'show' }, autoArrows: false });
});