﻿$(document).ready(function() {

    //rollover effect on links 
    $("a.simplehover img, img.simplehover").mouseover(function() {
        $(this).attr("src", $(this).attr("src").replace("-off.", "-on."));
    }).mouseout(function() {
        $(this).attr("src", $(this).attr("src").replace("-on.", "-off."));
    });


    $(".ul-submenu").hide();

    $(".submenu").mouseenter(function() {
        $(".ul-submenu").fadeIn(300);
    }).mouseleave(function() {
        $(".ul-submenu").fadeOut(100);
    });


    $('#footer-wrapper').stickyFooter();

    $('.slideshow').cycle({ fx: 'fade', timeout: 8000 });
});
