// jQuery
$(document).ready(function() {

	// Tabelle Keywords
	$("table tr:odd").addClass("bg_schwarz_transp_25");
	$("table tr:gt(0)").hover(
		function () {
			var markt 	= $(this).children("td:eq(0)").text();
			var keyword	= $(this).children("td:eq(1)").text();
			var nummer	= $(this).children("td:eq(2)").text();
			var title	= markt + ": " + keyword + " " + nummer;
			
			$(this).children("td").addClass("bg_schwarz_transp_75");
			$(this).attr("title", title);
		}, 
		function () {
			$(this).children("td").removeClass("bg_schwarz_transp_75");
		}
	);


	// AGB
	$("#agbbox").hide();
	$("#agbtext-text").load("agb.html #text_fuer_anmeldung");
	$("#agbbox, #agbtext, #agbtext-text, #agbtext-close a").click(function(){
		$("#agbbox").fadeOut();
	});


});














































