// JavaScript Document



$(document).ready(function(){	

	Cufon.replace('#nav LI A, #footer A, h1, h2, h3, .linkBig, .textMeta, .buttonGreenBig, .buttonGreenSmall, .forumTitle A');	
	$('.clearInput').clearInput();

});

jQuery.fn.clearInput = function() {
	return this.focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
};
	
