window.onload = function() { // выполнить после загрузки документа
…
/*@cc_on
    if(@_jscript_version < 5.8) { // только для IE6—7
        var search = document.getElementById('searchInput');
        search.onblur = function() {
            this.style.color = '#f00';
            if(!this.value) this.value = this.title;
       };
        search.onfocus = function() {
            this.style.color = '#00f';
            if(this.value == this.title) this.value = '';
        };
    }
@*/
…
};