/*
  Musikkammer
  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.

  Changes to these files are PROHIBITED due to license restrictions.
*/



$(function() {
	var submenu = $("#submenu");
	if (submenu.length>0) {
		var a = submenu.siblings("a");
		var content = $("#content");
		submenu
			.insertBefore(a)
			.css("left", a.position().left+submenu.width()>content.position().left+content.width()
				? content.width()-submenu.width()-20
				: a.position().left
			);
	}
	$("a[href^='http://']").click(function() {
		window.open(this.href);
		return false;
	});
});
