/*
 * Diverse Javascript-Erweiterungen fuer Gobocompany
 */
function initGobo() {
	
	// Fade-Effekt fuer das Farbtabellen-Popup
	if(document.getElementById('nav')) {
		var win = new Window({
			id: "gobopopup",
			className: "gobopopup",
			title: "FARBTABELLE",
			width:520,
			height:600,
			left:100,
			top:100,
			url: "/farbtabelle/",
			showEffectOptions: {duration:1.5}});
	}

	// Button zum oeffnen der Farbtabelle
	if(document.getElementById('farbtabelle')) {
		$('farbtabelle').onclick = function() {
			win.showCenter();
			return( false );
		}
	}

	if(document.getElementById('additionalcontenttitle')) {
		$('additionalcontenttitle').onclick = function() {
			new Effect.Appear('additionalcontent');
		}
	}
	
}

Event.observe(window, "load", initGobo);
