$(document).ready(function(){

	// bind accordion effect to the main menu
	/* 16.09.2008 - disabled accordian menu
	$.accordian('#navi_top > li', '.mtActive', {
		titles:'.mtTitle',
		contents:'.mtContent',
		closeOther: ['#navi_bottom > li', '.mbActive', '.mbTitle', '.mbContent']
	});
	$.accordian('#navi_bottom > li', '.mbActive', {
		titles:'.mbTitle',
		contents:'.mbContent',
		closeOther: ['#navi_top > li', '.mtActive', '.mtTitle', '.mtContent']
	});
	*/

	// bind scroll functionality to the scroll buttons below the page-content
	$('#content_scroll').jScrollPane({scrollbarWidth:0, scrollbarMargin:0, animateTo:true});
	$('.scroll-by').bind('click', function() {
		$('#content_scroll')[0].scrollBy(parseInt($(this).attr('rel')));
		return false;
	});

	// bind slide up and down toggle for language menu
	$('.navi_lang_header').toggle(
		function() {
			$('.navi_lang_content').slideDown();
		},
		function() {
			$('.navi_lang_content').slideUp();
		}
	);

	// attach fade in to content images
	$('img.fade').fadeIn(1500);

});