$(document).ready(function(){
	//Activates #content-tabs
cycle();
	$('#hometabs').tabs();
	tabHeight();

	if($.hasFlashPlayer == true){
		$('#flash').flash({ swf: 'flash/home_flash.swf', height: 236, width:920, params: { wmode:'transparent'}, flashvars:{txtPath:'/ger/flash/'}});  
	}else{
		$("div#flash img").css("display", "block");	
	}
	
	function tabHeight(){
		ph = $('#portlets').height();
		at = $('div.activeTab div.show').height();
		if(ph > at){
			ph = (ph - 81)+'px';
			$('div.activeTab div.show').css('height', ph);
		}
	}
	
	$('ul.activeTab li a').click(function(){
		tabHeight();									  
	});
	function cycle() {
	var $banners = $('#hp_banners');
	if ($banners.children().length > 1) {
		$banners.cycle({ 
			fx: 	'scrollLeft',
			speed: 	750,
			timeout:6000,
			pause: 	1
		});
	}
}

});
