$(function() {
			   
			   		$('#actsPfeilRechts').click(function() {
														 
														maxRight = parseFloat($('#markierung').css('left')); 
														 
														if (maxRight < 278) { 
														 $('#markierung').animate({ "left" : "+=55px" },500);
														  $('#interpreten').animate({ "left" : "-=458px" },500);
														}
														 
														 
														 });
					
					$('#actsPfeilLinks').click(function() {
														 
														maxLeft = parseFloat($('#markierung').css('left')); 
														 
														if (maxLeft > 57) { 
														 $('#markierung').animate({ "left" : "-=55px" },500);
														  $('#interpreten').animate({ "left" : "+=458px" },500);
														}
													
														 
														 });
					$('#actsLeiste').click(function() {
						 
						 pos = parseFloat($('#interpreten').css('left'));
						console.log(pos);
					
					switch (pos) {					
						case -458:
							$('#interpreten').css({"height" : "400px"});
							break;
						
					}
												   });
			   
			   });// JavaScript Document
