var $j = jQuery.noConflict();

$j(document).ready(function () {
	Cufon.replace('ul.home_modules h2 span');
	Cufon.replace('#footer h2 span');
	Cufon.replace('.content_inner h3');
	Cufon.replace('.billboard h1 span');
	
	$j('.blur').click(
		function() {
			if (this.value == this.defaultValue) {
			this.value = '';
		}
	});
	
	$j('.blur').blur(
		function() {
			if (this.value == '') {
			this.value = this.defaultValue;
		}
	});
	
});
