Shadowbox.init({
	overlayColor: "#191d21",
	overlayOpacity: "0.9"
});

jQuery(document).ready(function($){

	/*---------------------------------------------------
	Search Field
	---------------------------------------------------*/
	
	$.fn.searchClear = function () {
	    return this.each(function () {
		
			def = $(this).val();
	
			$(this).focus(function () {
				if ( $(this).val() == def )
				$(this).val('');
		    });

			$(this).blur(function () {
				if ( !$(this).val() )
				$(this).val(def);
		    });

	    });  
	};
	
	$("#s").searchClear();
	
	
});
