﻿$(document).ready(function () {
    $('#txtSearch').focus(function () {
        if ($('#txtSearch').val() == 'Search') {
            $('#txtSearch').val('');
            $('#txtSearch').toggleClass('Unfocused');
        }
    });
    $('#txtSearch').blur(function () {
        if ($('#txtSearch').val() == '') {
            $('#txtSearch').val('Search');
            $('#txtSearch').toggleClass('Unfocused');
        }
    });

});
