// jquery ajax get-request
	function jquery_ajax_get(URL, container, hide){
		if(hide) {
			$.get(URL, function(text) {
				$(container).html(text);
			});
		} else {
			$.get(URL, function(text){
				$(container).slideUp('fast',function(){
					$(container).html(text).slideDown('fast');
				});
			});
		}
	}

// jquery ajax post
	function jquery_ajax_post(URL, data, container){
		$.post(URL, data, function(text){
			$(container).fadeOut('fast',function(){
				$(container).html(text).fadeIn('normal');
			});
		});
	}

