function initPage(fileName, isRoot) {

	var q = $('#query');
	q.blur(function() {
	  var $this = $(this);
	  if ($this.val() == '') {
	    $this.val('Search the site...');
	  }
	});
	
	q.focus(function() {
	  var $this = $(this);
	  if ($this.val() == 'Search the site...') {
	    $this.val('');
	  }
	});
	
	if (isRoot && fileName== 'search.html') {
		
	    var _query = $.url.param('query');
	    if (_query) {
		  doSearch('search', _query);
	    } 
	}
	
}

