$(document).ready(function(){

	applyform("#commentform", "Comment posted!","DYNAMICRELOAD",false);
	applyform("#photocomment", "Comment posted!","DYNAMICRELOAD",false);
	$("#morepiclink").click(function(){
	
		$("#morepic").toggle("slow");
		if($(this).text() == "Less Photos")
			$(this).text("More Photos");
		else
			$(this).text("Less Photos");
	});

});

