$(document).ready(function(){$("div.scrollable").scrollable({size:3});$('#text_right').bind('mouseenter',function(){$('#text',this).stop(true).fadeTo('slow',0);});$('#text_right').bind('mouseleave',function(){$('#text',this).stop(true).fadeTo('slow',1);});$('a.news').click(function(){var myid=this.getAttribute('rel');$('#content').stop(true).fadeTo('slow',0.0,function(){$.ajax({url:root_dir+'/shownews.php',type:'GET',data:({'id':myid}),success:function(data){$('#content').html(data);$('#content').stop(true).fadeTo('slow',1);}});});return false;});$('a.team').click(function(){var myid=this.getAttribute('href').substr(1);var index=$('.items a[href=#'+myid+']').index()-1;$("div.scrollable").scrollable({size:3}).seekTo(index);$('#buttons a').removeClass('active');$('#buttons a[href=#'+myid+']').addClass('active');$('#content').stop(true).fadeTo('slow',0.0,function(){$.ajax({url:root_dir+'/showteam.php',type:'GET',data:({'id':myid}),success:function(data){$('#content').html(data);jQuery("#content").bind("load",function(){$('#content').stop(true).fadeTo('slow',1);});}});});});$('a.arbeiten').live('click',function(){var varget=this.getAttribute('title');var rel=this.getAttribute('rel');var myid=this.getAttribute('title');$('#content').stop(true).fadeTo('slow',0.0,function(){$.ajax({url:root_dir+'/arbeit.php',type:'GET',data:({'id':myid,'kat':rel}),success:function(data){$('#content').html(data).stop(true).fadeTo('slow',1);}});});return false;});$('#bg_img').live('mouseenter mouseover',function(){$('#pic').stop(true).fadeTo('slow',0,function(){$(this).hide();});});$('#bg_img').live('mouseleave mouseout',function(){$('#pic').show().stop(true).fadeTo('slow',1);});$.fn.setHeight=function(){var h_stand=$('#standard').outerHeight();var h_ueber=$('#ueberschirften').outerHeight();var h_standt=h_stand-h_ueber-40;$(this).css({'height':h_standt,'overflow':'hidden'});$('#scroll').css({'height':h_standt,'overflow':'hidden'});$('#scroll').jScrollPane({scrollbarWidth:10,dragMaxHeight:30});};$('#standardtext').setHeight();});