// Utility functions

function setUpInputs() {
  $("input.help").addClass("greyed");
  $("input.help").focus(
		function () {
		  if ($(this).attr("value") == $(this).attr("help")) {
				$(this).removeClass("greyed");
		  	$(this).attr({value : ""});
			}
			else {
			  $(this).attr({value : $(this).attr("value")});
			}
		}
	);
  $("input.help").blur(
		function () {
		  if ($(this).attr("value") == "") {
				$(this).addClass("greyed");
		  	$(this).attr({value : $(this).attr("help")});
			}
			else {
			  $(this).attr({value : $(this).attr("value")});
			}
		}
	);
}

function setUpStoryTools() {
  $("#decreaseFontSize").click(function(){changeFontSize("#storytext",-1); return false;});
  $("#defaultFontSize").click(function(){defaultFontSize("#storytext"); return false;});
  $("#increaseFontSize").click(function(){changeFontSize("#storytext",1); return false;});
}

$(document).ready(
	function() {
		setUpInputs();
		setUpNewWindows();
		setUpStoryTools();
	}
);