$(document).ready(function(){
	//Activates #content-tabs
randomtip();
	$('#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 randomtip() {
	
	var length = $("#featured_random li").length;
	
	var ran = Math.floor(Math.random()*length) + 1;
	$("#featured_random li:nth-child(" + ran + ")").show();
};
	
});
