$(document).ready(function(){
	var anz_new_termine = 0;
	
	$("#add_termin").click(function(e) {
			anz_new_termine = anz_new_termine+1;
			$.get("/ajax_request.php?path=/de/login/kurse/termin_new&num="+(anz_new_termine), function(data){
		  	$("div#termine_table").append(data);
			});
						
			e.preventDefault();
		}
	);
	
	$(".termin_anmeldung_link").click(function(e) {
			window.open(this+"&popwin=1", "Anmeldung", "width=500,height=730,left=100,top=50,scrollbars=yes");
			e.preventDefault();
		}
	);
	
	$(".del_termin").livequery( function () { $(this).click(function(e) {
		var termin_id = this.id.replace(/del_/g, "");
		
		$("table#termin_table_"+termin_id).remove();
		
		e.preventDefault();
	});});
	
	$("ul.jsmenue").hide();
	$("ul.jsmenue").addClass("js_enabled");
	
	$("li.jsmenue").mouseover(function(e) {
		$("ul.jsmenue").show("fast");
	});
	
	$("ul.jsmenue").mouseleave(function(e) {
		$(this).hide("slow");
	});
});
