﻿$("document").ready(function () {
    $('#topmenu a').hover(
            function () { $(this).stop().animate({ backgroundColor: '#006699', color: "#fff" }, 750); },
            function () { $(this).stop().animate({ backgroundColor: '#282828', color: "#c4c4c4" }, 750); }
             );
    $("#login input[type=text]").val("Username");
    $("#login input[type=text]").click(function () { if ($(this).val() == "Username") $(this).val(""); });
    $("#login input[type=text]").blur(function () { if ($(this).val() == "") $(this).val("Username"); });
    $('#tel').hover(
            function () { $(this).stop().animate({ color: "#fff", opacity: '.9' }, { duration: 750, queue: false }); $(this).find("span").animate({ color: "#f00" }, { duration: 750, queue: false }); },
            function () { $(this).stop().animate({ color: "color: #b6b6b6", opacity: '1' }, { duration: 750, queue: false }); $(this).find("span").animate({ color: "#b6b6b6" }, { duration: 750, queue: false }); }
             );
    $('#login a').hover(
            function () { $(this).stop().animate({ color: "#000" }, 750); },
            function () { $(this).stop().animate({ color: "#666699" }, 750); });
    $('.slide').kwicks({
        max: 760,
        spacing: 0
    });
});
