$(document).ready(function(){
	$(document).pngFix();
	if($.find("#sendmail") != ""){
		$("#sendmail").submit(function(){
			var myebool = true;
			var mycbool = true;
			if($("#email").attr("value") == "" || $("#email").attr("value") == undefined){
				myebool = false;
			}
			if($("#comments").html() == "" || $("#email").attr("value") == undefined){
				mycbool = false;
			}
			if($.find(".error") == ""){
				if(!mycbool) $("#comments").after('<li class="error"><span style="visibility:hidden;">err</span>Please enter a value for the "Comments" field</li>');
				if(!myebool) $("#email").parent().after('<li class="error"><span style="visibility:hidden;">err</span>Please enter a value for the "Your email address" field</li>');
			}
			return mycbool && myebool;
		});
		$("#myreset").click(function(){
			$(".error").each(function(){
				$(this).remove();
			});
		});
	}
});
