(function($) {
	
	$(function() {
	
		$("#mini-search-field").focus(function() {
			if( this.value === this.defaultValue ) {
				this.value = "";
			}
		
		}).blur(function() {
			if( !this.value.length ) {
				this.value = this.defaultValue;
			}
		});
		
		//Cufon styling
		/*
		$.site.util("Cufon.replace", "#home-page h1", {
			color: "-linear-gradient(#f3fb9d, #ffc900)",
			textShadow: "2px 2px rgba(0, 0, 0, 0.4)"
		});
		*/
		
		$.site.util("Cufon.replace", "#home-page #product-section h3", {
			color: "-linear-gradient(#fff, #ccc)",
			textShadow: "2px 2px rgba(0, 0, 0, 0.4)"
		});

	});

})(jQuery);
