		$(document).ready(function() {

			$.featureList(
				$("#tabs li a"),
				$("#output li"), {
					start_item	:	0
				}
			);

			/*
			
			// Alternative

			
			$('#tabs li a').featureList({
				output			:	'#output li',
				start_item		:	0
			});

			*/

		});
		
		
$(document).ready(function(){
		$("#contact_form").validate({
			debug: false,
			rules: {
				name: "required",
				comments: "required",
				captcha_id: "required",
				email: {
					required: true,
					email: true
				}
			},
			messages: {
				name: "",
				email: "",
				comments: "",
				captcha_id: "",
			},
			submitHandler: function(form) {
				// do other stuff for a valid form
				$.post('process_contactform.php', $("#contact_form").serialize(), function(data) {
					$('#results').html(data);
					$('#contact_form').fadeOut(400, function(){ $(this).remove(); });
										
				});
			}
		
		});
		
	});
