$(document).ready(function() {
  // $("#tweet a").getTwitter({
  //  userName: "dwaynemccreath",
  //  numTweets: 1,
  //  loaderText: "Sit your candy ass down...",
  //  slideIn: false,
  //  showHeading: false,
  //  showProfileLink: false
  // });
  $("#email").focus(function(){
    if($(this).attr("value") == "E-mail address"){
      $(this).attr("value","");
      $(this).css("color","#000000");
    }
  });
});

