﻿//alert("before Jquery");
//history.navigationMode = 'compatible';
$(document).ready(function() {
    if ($('.searchFieldInput') != null) {
        var sbox = $('.searchFieldInput');
        sbox.val('');
        sbox.click(function() {
            sbox.css("background", "#fff");
        });
    }
});
function showandwait() {
    var sbox = $('.searchFieldInput');
        sbox.val('Loading...');
}
