$(document).ready(function(){/////////////////////////////////////// General/////////////////////////////////////	// button styles	$('.button').hover(function(){		$('span', this).animate({paddingRight: '+=10'},150);	},function(){		$('span', this).animate({paddingRight: '-=10'},150);	});		// focus for the subscribe button	$(".cleartext").focus(function(){		var value;		value = $(this).val();				if(value == "" || value == null || value == $(this).attr("rel")){			$(this).val("");		}	});	// blur for the subscribe button		$(".cleartext").blur(function(){		var value;		value = $(this).val();				if(value == "" || value == null){			$(this).val($(this).attr("rel"));		}	});}); // close document.ready
