$(document).ready(function() {
	
	
	
		$('.person-right-hidden:first').show();
		$('.person-left:first').addClass('active');

		/*
		
		$('.person').each(function(){
			$(this).find('.person-left').css('min-height', $(this).find('.person-right').height()+1+'px');	
		});
		*/
		
        $('.biografie').hover(function(){
        	$(this).parent().addClass('active');
        	$('.person-left').not($(this).parent()).removeClass('active');
			$('.person-right-hidden').not($(this).parent().find('.person-right-hidden')).hide();
			var diff = $(this).parent().offset().top - $(".person:first").offset().top;
			$(this).parent().find('.person-right-hidden').not(':visible').css('top', -diff+'px').fadeIn('50',function(){
			if ($.browser.msie){this.style.removeAttribute('filter');}});
			
		},
		function(){
        	$(this).parent().removeClass('active');
			$(this).parent().find('.person-right-hidden').hide();
			
		});
		
	
    });
