// JavaScript Document
$(document).ready(function() {
	$("#askme").attr("value", " type question here");

	var text = " type question here";

	$("#askme").focus(function() {
		$(this).addClass("active");
		if($(this).attr("value") == text) $(this).attr("value", "");
	});

	$("#askme").blur(function() {
		$(this).removeClass("active");
		if($(this).attr("value") == "") $(this).attr("value", text);
	});
});

$(document).ready(function() {
	$("#emailer").attr("value", " your email address here");

	var text = " your email address here";

	$("#emailer").focus(function() {
		$(this).addClass("active");
		if($(this).attr("value") == text) $(this).attr("value", "");
	});

	$("#emailer").blur(function() {
		$(this).removeClass("active");
		if($(this).attr("value") == "") $(this).attr("value", text);
	});
});


