// clears and replaces text in form input fields and textareas
// -----------------------------------------------------------------
function clearText(thefield) {
  if (thefield.defaultValue==thefield.value) { thefield.value = "" }
} 
function replaceText(thefield) {
  if (thefield.value=="") { thefield.value = thefield.defaultValue }
}


$(document).ready(function() {
	Cufon.replace('h2#blurb_4_title');
	Cufon.replace('h2#blurb_5_title');
	Cufon.replace('h2#blurb_6_title');
	Cufon.replace('#content h1');
	
});
