﻿//custom javascript for this website goes in here
$(document).ready(function() {
    //go...
    if ($('#feature').length > 0) {
        $('#feature').s3Slider({ timeOut: 8000 });
    }

    //toggle the submenu visibility when clicking a main nav item (also disable the main nav items link if it contains sub nav items so that the dropdown can appear/disappear)
    $('img[id$=imgDropdown]').click(function() {
        $(this).parents('li').find('ul').slideToggle();
    });
    $('a[id$=subnavlink]').click(function() {
        var $dropdown = $(this).next('ul');
        if ($dropdown.length > 0) {
            $(this).parents('li').find('ul').slideToggle();
            return false;
        }
    });
});

