$(function() {

	// CUFON REPLACEMENT
	Cufon.replace('#header .nav li a', {hover: true})('#mainContent h1', {hover: true})('#mainContent h2', {hover: true});
	
	// CLEAR SEARCH BOXES
	$('.default').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;
			}
		});
	});

});
