﻿$(document).ready(function () {
    $('.slideshow').cycle({
        fx: 'fade',
        timeout: 4000
    });

    $("#home").mouseenter(function () {
        $("#home").css("background", "url('sc/i/btn_home_on.png') no-repeat transparent");
    });

    $("#home").mouseleave(function () {
        $("#home").css("background", "url('sc/i/btn_home_off.png') no-repeat transparent");
    });

    $("#about").mouseenter(function () {
        $("#about").css("background", "url('sc/i/btn_about_on.png') no-repeat transparent");
    });

    $("#about").mouseleave(function () {
        $("#about").css("background", "url('sc/i/btn_about_off.png') no-repeat transparent");
    });

    $("#listing").mouseenter(function () {
        $("#listing").css("background", "url('sc/i/btn_listing_on.png') no-repeat transparent");
    });

    $("#listing").mouseleave(function () {
        $("#listing").css("background", "url('sc/i/btn_listing_off.png') no-repeat transparent");
    });

    $("#exchange").mouseenter(function () {
        $("#exchange").css("background", "url('sc/i/btn_1031_on.png') no-repeat transparent");
    });

    $("#exchange").mouseleave(function () {
        $("#exchange").css("background", "url('sc/i/btn_1031_off.png') no-repeat transparent");
    });

    $("#contact").mouseenter(function () {
        $("#contact").css("background", "url('sc/i/btn_contact_on.png') no-repeat transparent");
    });

    $("#contact").mouseleave(function () {
        $("#contact").css("background", "url('sc/i/btn_contact_off.png') no-repeat transparent");
    });
});
