<!--
// ----------------------------------------------------------------------------------------
// the following are some simple scripts, which enhance the functionality of the site
// if you encounter any problems or have questions
// please refer to Cedric Haindl of Haindl Mediendesign http://www.haindl.ch cedi@haindl.ch
//
// please also note, that the path to the images has to be correct!
// ----------------------------------------------------------------------------------------

// workaround for the infamous Netscape CSS- and Layer-bug:
// reloads the window on resize

if (document.layers) {
origWidth = innerWidth;
origHeight = innerHeight;}


// ----------------------------------------------------------------------------------------
// switches between languages:
// ----------------------------------------------------------------------------------------

function switchLang() {
	URL=window.document.location.href;

	if (URL.indexOf("/en/") != -1) {
		URL = URL.replace(/\/en\//i,'\/fr\/')
	} else {
		URL = URL.replace(/\/fr\//i,'\/en\/')
	}
	window.document.location.href = URL;
}

//-->

