jQuery(document).ready(function() {
		jQuery('input[name=bytlosenord]: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/changepsw_ajax.php",{
				newpsw: jQuery("input[name='newpsw']").val()

		}, 
		function(data){
			jQuery("#show").fadeIn("slow").html(data);
			
		});
	});
});

