	jQuery(function(){
				// Accordion
				jQuery("#accordion").accordion({ header: "h3" });	
			});

	
	
	jQuery(document).ready(function(){
 
	jQuery('#contactform').submit(function(){
 
		var action = jQuery(this).attr('action');
 
		jQuery('#submit')
			.after('<img src="graphics/ajax-loader.gif" class="loader" />')
			.attr('disabled','disabled');
 
		jQuery.post(action, { 
			firstname: jQuery('#firstname').val(),
			lastname: jQuery('#lastname').val(),
			email: jQuery('#email').val(),
			state: jQuery('#state').val(),
			contactme: jQuery('#contactme').val()
		},
			function(data){
				jQuery('#contactform #submit').attr('disabled','');
				jQuery('.response').remove();
				jQuery('#contactform').before('<span class="response">'+data+'</span>');
				jQuery('.response').slideDown();
				jQuery('#contactform img.loader').fadeOut(500,function(){jQuery(this).remove()});
				if(data=='Message sent!') jQuery('#contactform').slideUp();
			}
		);
 
		return false;
 
	});
 
});

