$(document).ready(function(){

	$("#shareBtn").click(function(){
		$("#shareWrap").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});
	
	$.fn.search = function() {
		return this.focus(function() {
			if( this.value == this.defaultValue ) {
				this.value = "";
			}
		}).blur(function() {
			if( !this.value.length ) {
				this.value = this.defaultValue;
			}
		});
	};
	$("input, textarea").search();
});