// remap jQuery to $
(function($){})(window.jQuery);


/* trigger when page is ready */
$(document).ready(function (){

	// Form input hide/display default text on focus/blur
	$("#s").focus(function() {
	        if(this.value == this.defaultValue) {
	                this.value = "";
	        }
	}).blur(function() {
	        if(!this.value.length) {
	                this.value = this.defaultValue;
	        }
	});  

});


/* optional triggers

$(window).load(function() {
	
});

$(window).resize(function() {
	
});

*/
