$(document).ready( function() {
	$('form.modal').nyroModal({
		type: "ajax",
		openSelector: '.modal',
		closeSelector: '.modalClose',
		closeButton: '<a href="#" class="modalClose">Schließen</a>'
	});
	$('.overview dl dd').hover(
		function() {
			$(this).css("background", "#6FBDE4");
			$(this).find("a, p").css("text-decoration", "none");
			$(this).prev("dt").css("background", "#6FBDE4");
			$(this).prev("dt").find("a, p").css("text-decoration", "none");
		},
		function() {
			$(this).css("background", "#FFFFFF");
			$(this).find("a, p").css("text-decoration", "underline");
			$(this).prev("dt").css("background", "#FFFFFF");
			$(this).prev("dt").find("a, p").css("text-decoration", "underline");
	});
	$('.overview dl dt').hover(
		function() {
			$(this).css("background", "#6FBDE4");
			$(this).find("a, p").css("text-decoration", "none");
			$(this).next("dd").css("background", "#6FBDE4");
			$(this).next("dd").find("a, p").css("text-decoration", "none");
		},
		function() {
			$(this).css("background", "#FFFFFF");
			$(this).find("a, p").css("text-decoration", "underline");
			$(this).next("dd").css("background", "#FFFFFF");
			$(this).next("dd").find("a, p").css("text-decoration", "underline");
	});
	$('.overview dl dt, .overview dl dd').click(function() {
		var link = $(this).find("a").attr("href");
		document.location.href = link;
	});
});
