jQuery(document).ready(function($) {
  $("#tweets").tweet({
    join_text: "",
    username: "HS_HomeStagers",
    count: 3
  });
  
  $("#newsletter>.email, .newsletter>.email").focus(function() {
  	if ( $(this).val() == "email address" ) {
  		$(this).val("");
  	}
  });
  
  $("#newsletter>.email, .newsletter>.email").blur(function() {
  	if ( $(this).val() == "" ) {
  		$(this).val("email address");
  	}
  });
});
