// ----------------------------------------------------
// Version: 0.1
// Last change: 10.06.2009
// Edited by: Sebastian Mohila
// Description: Basic functions for Joomla! pages
//
// (C) 2000 - 2009 formativ.net oHG / Sebastian Mohila
// All Rights Reserved
// ----------------------------------------------------


// Konflikt-Modus aktivieren
var $j=jQuery.noConflict();



// -----------------------------------------------------
// Name: ()
// Funktion: Führt initiale Funktionen aus
// Rückgabe: Null
// Status: aktiv
// Version: 0.1
// Letzte Änderung: 10.06.2009
// -----------------------------------------------------
$j(function() {
	$j("#cLangSelectLang").change(function() {
		// Sprache wechseln
		if(this.value=="de") window.location.href="/de/home.html";
		if(this.value=="en") window.location.href="/en/home.html";			
	});
});

