/*
  Beyond Green
  Copyright (C) 2009 by Systemantics, Bureau for Informatics

  Lutz Issler
  Am Lavenstein 3
  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() {
	$("#menu ul li img:not(.selected)").hover(
		function() {
			this.src="elements/menu_active.png";
		},
		function() {
			this.src="elements/menu_inactive.png";
		}
	);
	$("#email ul li img:not(.static)").hover(
		function() {
			this.src="elements/emailbuttons_active.png";
		},
		function() {
			this.src="elements/emailbuttons_inactive.png";
		}
	);
	$("a.external, a[href^=http://]").click(function() {
		window.open(this.href);
		return false;
	});
});
