jQuery(document).ready(function() {
 jQuery('input[type="text"]').focus(function() {
  this.value = '';
});
jQuery('input[type="text"]').blur(function() {
  if (this.value == '') this.value = (this.defaultValue ? this.defaultValue : '');
});
});
jQuery(document).ready(function() {
 jQuery('textarea').focus(function() {
  this.value = '';
});
jQuery('textarea').blur(function() {
  if (this.value == '') this.value = (this.defaultValue ? this.defaultValue : '');
});
});
jQuery(document).ready(function() {
jQuery('div.story-box:odd').addClass('pink');
jQuery('div.story-box:even').addClass('blue');
});


