Cufon.replace('h1, h2');

function pageLoad() {
	Cufon.replace('h1, h2, .manager .rated');

	$('#ctl00_middle_shareText, #ctl00_middle_playersearch1_playerName, #ctl00_middle_playerName').each(function() {
		var default_value = this.value;
		$(this).focus(function() {
			if(this.value == default_value) {
				this.value = '';
			}
		});
		$(this).blur(function() {
			if(this.value == '') {
				this.value = default_value;
			}
		});
	});

}

// DOM Ready
$(function() {

});
