
// Setup after the page is loaded
jQuery.noConflict();
jQuery(document).ready(function($) {
  
  // Footer email form
  // Add/remove default value when appropriate
  if (jQuery('input.footer-email').attr('value') == '') {
    jQuery('input.footer-email').attr('value', 'email');
  }
  jQuery('input.footer-email').focus(function() {
    if (jQuery(this).attr('value') == 'email') {
      jQuery(this).attr('value', '');
    }
  });
  jQuery('input.footer-email').blur(function() {
    if (jQuery(this).attr('value') == '') {
      jQuery(this).attr('value', 'email');
    }
  });
  
});

