/* Author: 
	Arno Richter, ultrabold GmbH
*/

$(document).ready(function() {
	
	/* fixes for IE6 */
	$('#nav-primary li:last-child').addClass('last');
	$('#nav-secondary li.active > a').addClass('open');

	$('#login-site').change(function(e) {
		var index = $(this).get(0).selectedIndex;
		var href = $(this).children("option").eq(index).data('href');
		if(!href || href == '') {
			//href is empty, do nothing
		} else {
			//redirect to the given url
			window.location.href = href;
		}
	});
});
