// Fix background image flickering in IE
try {
  document.execCommand('BackgroundImageCache', false, true);
} catch(e) { }

var DD_belatedPNG;

if (DD_belatedPNG)
	DD_belatedPNG.fix('h1');

var KeepMeUpdated = {
  prompt: "Enter your email address", // default value - should get real value from markup
  init: function() { this.prompt = jQuery('#email').focus(this.focus).blur(this.blur).val(); },
  focus: function() { if (this.value == KeepMeUpdated.prompt) { this.value = ''; } },
  blur: function() { if (this.value.length == 0) { this.value = KeepMeUpdated.prompt; } }
};
$(function() {
  KeepMeUpdated.init();
});

$(document).ready(function() {
	$('form.keepUpdated').validate();
});

