/*FLIR.init( { path: '/includes/facelift/' } );*/

/***************************/
//@Author: Adrian "yEnS" Mato Gondelle & Ivan Guardado Castro
//@website: www.yensdesign.com
//@email: yensamg@gmail.com
//@license: Feel free to use it, but keep this credits please!		

// visit adrian's website for original script, this has been modified
// by peter hartree	
/***************************/

$(document).ready(function(){
	//global vars
	var searchBox = $("#search");
	var searchBoxDefault = "enter keyword";
	
	//Searchbox2 show/hide default text if needed
	searchBox.focus(function(){
		if($(this).attr("value") == searchBoxDefault) $(this).attr("value", "");
	});
	searchBox.blur(function(){
		if($(this).attr("value") == "") $(this).attr("value", searchBoxDefault);
	});
});