﻿/* ------------------ON LOAD ----------- */
$(document).ready(function () {

    //rollover effect on links : no custom .js, plain jquery
    $(".simplehover").mouseover(function () {
        $(this).attr("src", $(this).attr("src").replace("-off.", "-on."));
    }).mouseout(function () {
        $(this).attr("src", $(this).attr("src").replace("-on.", "-off."));
    });

    //load superfish
    $('ul.sf-menu').superfish();


    //Rotating Banners
    $('#slideshow').cycle({ fx: 'fade', timeout: 10000, pause: 1 });

    //Fix Border top problem
    $(".ddl1 > li:first").css("border-top", "1px solid black");
    $(".ddl2 > li:first").css("border-top", "1px solid black");

    
});