﻿$(document).ready(function () {

    //search
    $('.q').focusin(function () {
        var $txt = $(this).val();
        if ($txt == 'Keyword or part number') {
            $(this).val('');
            $(this).toggleClass('txtfocusin');
        }
    });
    $('.q').focusout(function () {
        var $txt = $(this).val();
        if ($txt == '') {
            $(this).val('Keyword or part number');
            $(this).toggleClass('txtfocusin');
        }
    });

    //login menu
    $('#loginli').hover(
         function () {
             $('#accountMenu').show();
         },
         function () {
             $('#accountMenu').hide();
         }
    );

});
