Cufon.replace('.callout h3', { fontFamily: 'Legacy Sans' });
Cufon.replace('#footer-counties', { fontFamily: 'Legacy Sans Book' });
Cufon.replace('#home #content-main blockquote', { fontFamily: 'Legacy Serif' });
Cufon.replace('#page-header, #home .intro, #home #content-main blockquote .author', { fontFamily: 'Legacy Sans' });

$(document).ready(function(){
	// Hide and show the text in a form field on focus on blur, respectivley.
  function clear_it(object){
    object.each(function(){
      $(this).bind("focus", function(){
        var orig_text = $(this).val();
        $(this).val('');
        $(this).bind("blur", function(){
          orig_text = ($(this).val() !== "") ? $(this).val() : orig_text ;
          $(this).val(orig_text);
        });
      });
    });
  }
	
	//clear_it( $("#contact-form input, #contact-form textarea") );
});