$(document).ready( function() {
	Cufon.replace('h2', { fontFamily: 'Locator', hover: true });
	Cufon.replace('h3 a.title', { fontFamily: 'Locator', hover: true });
	Cufon.replace('h4', { fontFamily: 'Locator'});
	Cufon.replace('#comments_container h3', { fontFamily: 'Locator'});
	Cufon.replace('#footer_nav h5', { fontFamily: 'Locator'});
});

$(function() {
	
	$(".new_window").click(function(e) {
		
		window.open( this.href, "New Window", "status = 1, height = 800, width = 600, resizable = 1" );
		
		e.preventDefault();

	});
	
	var default_values = new Array();
	$(".text_input").focus(function() {
		if (!default_values[this.id]) {
 			 default_values[this.id] = this.value;
		}
		if (this.value == default_values[this.id]) {
  			this.value = '';
		}
		$(this).blur(function() {
  			if (this.value == '') {
    			this.value = default_values[this.id];
  			}
		});
	});
});
