jQuery(document).ready(function() {
		jQuery('input[name=button]:button').click(function(){
		jQuery("#show").html('<center><img src="http://ledarinstitutet.se/wp-content/themes/ledarinstitutet/images/ajax-loader.gif"></center>');
		jQuery.get("http://ledarinstitutet.se/wp-content/themes/ledarinstitutet/includes/reg_ajax.php",{
		namn: jQuery("input[name='dittnamn']").val(),
		epost: jQuery("input[name='epost']").val(),	
		telefon: jQuery("input[name='telefon']").val(),	
		password: jQuery("#password").attr("value"),			
		adress: jQuery("input[name='adress']").val(),
		org: jQuery("input[name='organisation']").val(), 
		event: jQuery("input[name='event']").val(), 
		funktion: jQuery("input[name='funktion']").val()}, 
		function(data){
			jQuery("#show").fadeIn("slow").html(data);
			
		});
	});
});

