$(document).ready(function() {
	

	$("#accordion_menu").accordion({
		autoHeight: false,
		header: "h3",
		navigation: true

	});

	
	$("div.login").dialog({
		buttons: '',
		
		closeOnEscape: false,
		title: 'Login',
		resizable: false,
		draggable: false,
		autoOpen: false,
		bgiframe: true,
		
		//height: 140,
		modal: true
	});
	
	$("#loginarea").click(function(){
		$("div.login").dialog("open");
	});
	
	
	$(".tabbdiv").tabs();
	
	$(".tabbdiv").tabs('option', 'fx', { opacity: 'toggle' });	


	$("div.openbox span").click(function() {
		$(this).prev("div").toggle("fast");
 	});
	
	//FUNKTION FOR AGBS
	$(".buttonregistration input[type='submit']").click(function(){

		var checked = $("input[name='agbs']").attr("checked");
		if(checked ===true)
		{
			document.submit();
		}
		else
		{
			var text = "Bitte stimmen Sie unseren AGB's zu, ansonsten k�nnen Sie sich nicht auf unserem Portal registrieren.";
			alert(text);
			return false;
		}
		
	});

});
