$(document).ready(function(){
    $(".header").append("<h3 id='tagline'>Love God. Love People. Serve the City.</h3>");
});

$(document).ready(function(){
var loc = window.location
	if (loc == "http://www.lifepointdallas.com/about-/contact"){
    $(".left_area").append("<div id=\"e-newsletter\"><h3>Sign up for the E&#8211;Newsletter</h3><form id=\"newsletter\" action=\"#\" method=\"post\"><fieldset><input type=\"hidden\" name=\"m\" value=\"1100526794013\" /><input type=\"hidden\" name=\"p\" value=\"oi\" /><p><input type=\"text\" name=\"ea\" id=\"ea\" size=\"15\" class=\"clickClear\" value=\"enter e-mail\" /><input type=\"image\" src=\"/images/signup_btn.gif\" id=\"submit\" value=\"Go\" /></p></fieldset></form></div><!--e-newsletter-->");
    }
});

$(document).ready(function(){
   $('input.clickClear').focus(function() {
      startText = $(this).val();
      $(this).val('');
   });
   $('input.clickClear').blur(function() {
      blurText = $(this).val();
      if (blurText == '') {
         $(this).val(startText);
      };
   });					
});				
