jQuery(document).ready(function() {
		jQuery('input[name=kambutton]: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/kam_ajax.php",{
		namn: jQuery("input[name='dittnamn']").val(),
				password: jQuery("#password").attr("value"),			

		epost: jQuery("input[name='epost']").val(),	
		org: jQuery("input[name='organisation']").val(), 
		funktion: jQuery("input[name='funktion']").val(),
		pm: jQuery("textarea[name='pm']").val(),
		tadel: jQuery("#tadel").val(),
	    Kommunikation: jQuery("input[name='Kommunikation']:checked").val(),
        Organisationsutveckling: jQuery("input[name='Organisationsutveckling']:checked").val(),
       Ledarskap: jQuery("input[name='Ledarskap']:checked").val(),
       Kultur: jQuery("input[name='Kultur']:checked").val(),
       engagemang: jQuery("input[name='engagemang']:checked").val(),
    	karriarutveckling:jQuery("input[name='karriarutveckling']:checked").val(),
        Chefshandledning: jQuery("input[name='Chefshandledning']:checked").val(),
   		Socialamedier: jQuery("input[name='Socialamedier']:checked").val() 		
		},
		 
		function(data){
			jQuery("#show").fadeIn("slow").html(data);
			
		});
	});
});

