// Copyright 2007 Google Inc.
// All Rights Reserved.

/**
 * @fileoverview sets the style, onfocus and onblur for 
 *               the CSE search box
 */

(function() {
  var f = document.getElementById('frmGoogleSearch');
  if (f && f.q) { 
    var q = f.q; 
    var n = navigator; 
    var l = location; 
    if (n.platform == 'Win32') { 
      //q.style.cssText = 'border: 1px solid #ccddff; padding: 2px; margin-bottom:3px;'; 
      }

    var b = function() { 
      if (q.value == '') { 
        q.style.background = '#FFFFFF url(http://www.realtor.org/ro/images/keywordorphrase.gif) left no-repeat'; 
      }
    }; 

    var f = function() { 
      q.style.background = '#ffffff'; 
    }; 

    q.onfocus = f; 
    q.onblur = b; 
    if (!/[&?]q=[^&]/.test(l.search)) { 
      b();
    }
  }
})();