
$(document).ready(function() {
    if ($.browser.msie) {
        switch ($.browser.version.substr(0, 3)) {
            case "6.0":
            case "7.0":
                $("#primary td").each(function() {
                    if ($(this).attr("style") != null) {
                        if ($(this).attr("style").toLowerCase().indexOf("width") >= 0) {
                            /*$(this).css("display", "none");*/
                        }
                    }
                });
                break;
            case "8.0":
                $("#primary td[style*='WIDTH']").hide();

        }
    }
    else {
        $("#primary td[style*='width']").hide();
    }
    $('#primary .active td').append('<span></span>');
    var inputValue = $('.searchFieldClass').get(0).value;
    $('.searchFieldClass').bind("blur", function() {        
        if ($(this).val() == '') {
            $(this).val(inputValue);
        }
    });
    $('.searchFieldClass').bind("click", function() {
        if ($(this).val() == inputValue) {
            $(this).val('');
        }
    });
});

