jQuery.noConflict();


jQuery(document).ready(function() {
	jQuery('#myForm').bind('submit', function() {
		jQuery(this).ajaxSubmit({
			target:		'#output',
			url:		'http://mjf.nu/registration/registration.php',
			success: 	showResponse
		});
		return false; // <-- important!
	});
   
		jQuery('#event_selected').change(function() {
		
			var event
			
			event = jQuery('select#event_selected option:selected').val();
			
			if(event == 'mjf09')
				jQuery('#event_mjf09').show('slow');
			else
				jQuery('#event_mjf09').hide('slow');
		});
	
}); 
 
function showResponse(){
$("#output").fadeIn('slow');
}

