$(document).ready(function() {
	$('.menu_button img').imghover({suffix: '_active'});
	$('#teaser a').mouseover(function() {
		$(this).toggleClass('active');
	});
	$('#teaser a').mouseout(function() {
		$(this).toggleClass('active');
	});
	var cpeople = 0;
	if($(document).getUrlParam('id')!=null) {
		cpeople = $(document).getUrlParam('id');
	}
	// read anchor
	var anchorpoint = "";
    if(window.location.href.indexOf("#") != -1){
      var url = window.location.href;
      var uanchor = window.location.href.split("#");
      if(uanchor[1]){
        anchorpoint = uanchor[1];
      }
    }

	// lokalisierung
	var url = window.location.href;
	var language = '';
	if(url.indexOf('/en/') != -1){
		language = '_en';
	}
	if(url.indexOf('L=1') != -1){
		language = '_en';
	}


	swfobject.embedSWF('fileadmin/omnimago/flash/people.swf', 'object', '540', '211', '8.0.0','fileadmin/omnimago/flash/expressInstall.swf', {xmlpath: 'fileadmin/omnimago/lib/xml/people'+language+'.xml', currentpeople: cpeople}, {'menu': 'false'}, {});
	swfobject.embedSWF('fileadmin/omnimago/flash/omnitour.swf', 'omnitour', '690', '505', '8.0.0','fileadmin/omnimago/flash/expressInstall.swf', {xmlpath: 'fileadmin/omnimago/lib/xml/tour'+language+'.xml', anchor: anchorpoint}, {menu: false, allowscriptaccess: 'always', wmode: 'window'}, {});
	swfobject.embedSWF('fileadmin/omnimago/flash/tournavi.swf', 'tournavi', '232', '505', '8.0.0','fileadmin/omnimago/flash/expressInstall.swf', {xmlpath: 'fileadmin/omnimago/lib/xml/tournavi'+language+'.xml'}, {menu: false, allowscriptaccess: 'always'}, {});
	swfobject.embedSWF('fileadmin/omnimago/flash/omnichronik.swf', 'omnichronik', '690', '505', '8.0.0','fileadmin/omnimago/flash/expressInstall.swf', {xmlpath: 'fileadmin/omnimago/lib/xml/chronik'+language+'.xml', anchor: anchorpoint}, {menu: false, allowscriptaccess: 'always', wmode: 'window'}, {});
	/* TOUR DEMO
	swfobject.embedSWF('fileadmin/omnimago/flash/omnitour-demo.swf', 'omnitourdemo', '690', '505', '8.0.0','fileadmin/omnimago/flash/expressInstall.swf', {xmlpath: 'fileadmin/omnimago/lib/xml/tour'+language+'demo.xml', anchor: anchorpoint}, {menu: false, allowscriptaccess: 'always', wmode: 'window'}, {});
	swfobject.embedSWF('fileadmin/omnimago/flash/tournavi-demo.swf', 'tournavidemo', '232', '505', '8.0.0','fileadmin/omnimago/flash/expressInstall.swf', {xmlpath: 'fileadmin/omnimago/lib/xml/tournavi'+language+'demo.xml'}, {menu: false, allowscriptaccess: 'always'}, {});
	*/
	if(language=='_en') {
		swfobject.embedSWF('fileadmin/omnimago/flash/omni-start-en.swf', 'mood', '770', '176', '8.0.0','fileadmin/omnimago/flash/expressInstall.swf', {}, {'menu': 'false'}, {});
	} else {
		swfobject.embedSWF('fileadmin/omnimago/flash/omni-start.swf', 'mood', '770', '176', '8.0.0','fileadmin/omnimago/flash/expressInstall.swf', {}, {'menu': 'false'}, {});
	}

	/* highlight im Newsbereich*/
	$("div.news_list h3 a:contains('"+$('div.news_container h3:first').text()+"')").addClass('active');

	/* klappen der Newsarchive */
	$('div.news_list:not(:first)').hide();
	$('div.three_cols_third_col h2 a').addClass('expandable');
	$('div.three_cols_third_col h2 a').click(function() {
		if($(this).parent('h2').next().next('div').length>0) {
			$(this).parent('h2').next().next('div').toggle();
		} else {
			$(this).parent('h2').next().next().next().toggle();
		}
		$(this).toggleClass('expandable');
		$(this).toggleClass('impandable');
	});
	if($('div.news_list h3 a.active').parents('div.news_list').prev().prev('h2').length>0) {
		$('div.news_list h3 a.active').parents('div.news_list').prev().prev().children('a').click();
	} else {
		$('div.news_list h3 a.active').parents('div.news_list').prev().prev().prev().children('a').click();
	}
});