$(function(){
	$("a.pdf").prepend("<img src='/images/pdficon_large.gif' alt='pdf'/>");
	$("#footer :text").focus(function() {
		if ($(this).val() == "Enter email")
			$(this).val("");
	});
	$("#footer :text").blur(function() {
		if ($(this).val() == "")
			$(this).val("Enter email");
	});
});