/* ------------------------------------------------------------
 * PROJECT        : FHSC Interface Standard
 * FILENAME       : jqsearch.js
 * ------------------------------------------------------------
 * DATE CREATED   : 30 Oct 2006
 * LAST UPDATED   : 07 Aug 2007
 * ------------------------------------------------------------
 * AUTHOR(S)      : Kevin Scholl (http://www.ksscholl.com/)
 * ------------------------------------------------------------ */

/* ------------------------------------------------------------
 * TOGGLE SEARCH AREA AND DISPLAY INPUT FIELD EFFECTS
 * ------------------------------------------------------------ */

$(document).ready(function(){

  // hide the search block
	$("#hiddenSearch").hide();
													 
	// set search field actions
	$("#srchTerms").focus(function() {
			$(this).css("color","#000");
			if(this.value == this.defaultValue) this.value = "";
		}).blur(function() {
			$(this).css("color","#999");
			if(this.value == "") this.value = this.defaultValue;
		});

  // show and hide the search block
  $("a.linkSearch").click(function(){
	  $("#hiddenSearch").slideToggle("normal",function(){
		  $(this).css("opacity", 1.0);
			});
		return false;
		});	
	
	});
