﻿$(function () {
    $(".header .logo").click(function (event) {
        $(this).blur();
    });

    // Header Search Box
    $(".header .util-nav input.search-box")
    .focus(function (event) {
        if ($(this).val() == 'Search') $(this).val('');
    })
    .blur(function (event) {
        if ($(this).val() == '') $(this).val('Search');
    });

    // Superfish Menus
    $("ul.main-nav").superfish({
        hoverClass: 'active',
        pathClass: 'current',
        delay: 450,
        animation: { opacity: 'show', height: 'show' },
        speed: 'fast',
        autoArrows: false,
        dropShadows: false
    });

    $('.header a').removeAttr('title');

    $('body > form :input').keydown(function (event) {
        if (event.which == 13) event.preventDefault();
    });
});
