/*
  Kreis Klever KulTourtage
  Copyright (C) 2009 by Systemantics, Bureau for Informatics

  Lutz Issler
  Mauerstr. 10-12
  52064 Aachen
  GERMANY

  Web:    www.systemantics.net
  Email:  mail@systemantics.net

  Permission granted to use the files associated with this
  website only on your webserver.
*/



$(function() {
	$("a.external, #info a, #newsitem a").click(function() {
		if (this.href.substr(0, 7)=="mailto:") {
			return true;
		}
		this.blur();
		window.open(this.href);
		return false;
	});
	var box = $("#event, #newsitem");
	if (box.length) {
		var item = $("li.selected");
		box.height(Math.max(
			box.height(),
			item.offset().top+item.height()-box.offset().top-2
		));
	}
});

