$(document).ready(function(){
	$("a[rel^='LearnMore']").prettyPhoto({
    social_tools: false
	});
	
	$("#email").each(function () {
		if ($(this).attr("value") == "")
			$(this).labelify();
	});
	
	$(document).mouseup(function(){
		$("#notify-me").css("background-position", "left top");
	});
	
	$("#notify-me").mousedown(function(){
		$(this).css("background-position", "right top");
	});

	$("#entry-form").validate({
		errorLabelContainer: "#error",
		errorElement: "div",
		rules: {
			email: {
				required: true,
				email: true
			}
		},
		messages: {
			email: "<h1>HMMM.</h1> <p>Looks like something isn't quite right with that email address.</p>"
		},
		showErrors: function(errorMap, errorList) {
			this.defaultShowErrors();
			$(window).scrollTop($(document).height());
		}
	});
});
