$(document).ready(function() {
	if ( $("#accreditations").length ) { $("#accreditations").hide(); }
	$("#acctoggle").click(function(){
		$("#accreditations").toggle();
		return false;
	});
	
	// deal printing order
	$("a.printorder").click(function(){
		// check form values
		var fName = $("input#name").val();		
		var fAddress = $("textarea#address").val();
		var fTown = $("input#town").val();
		var fZip = $("input#zip").val();
		var errors = false;
		
		if ( fName == "" || fName == " " ){ $("input#name").next().css("display","inline"); errors = true; } else { $("input#name").next().hide(); }
		if ( fAddress == "" || fAddress == " " ){ $("textarea#address").next().css("display","inline"); errors = true; } else { $("textarea#address").next().hide(); }
		if ( fTown == "" || fTown == " " ){ $("input#town").next().css("display","inline"); errors = true; } else { $("input#town").next().hide(); }
		if ( fZip == "" || fZip == " " ){ $("input#zip").next().css("display","inline"); errors = true; } else { $("input#zip").next().hide(); }
					
		if ( !errors ) {
			window.print();
		}
		return false;
	});
});