﻿$(document).ready(function () {

    $("#main-nav ul li a").each(function () {
        /*Keeping that specific page you are on highlighted*/
        if (window.location.pathname.toLowerCase().indexOf($(this).attr("href").toLowerCase()) > -1) {
            $(this).css("color", "#253d73");
        }

    });


    if ($('#slideshow').length > 0 )
    {
        $('#slideshow').cycle({
            fx: 'fade',
            speed: 2000,
            timeout: 8000,
            random: 1
        });
    }


});
