Ape.Element.Wissenstests_teaser_maincol = function(){
	var that = this;
	var AnzahlFotoshows = null;
	var bewegungsbereich = null;
	var action = 0;
	
	this.start = function(){
	
		$('#zurueck_wissenstests_img').parent().css('cursor', 'default');
		
		if (that.AnzahlFotoshows <= 4){
			$('#weiter_wissenstests_img').attr('src', '/img/pfeil_weiter_inaktiv.png');
			$('#zurueck_wissenstests_img').parent().css('cursor', 'default');
			$('#weiter_wissenstests_img').parent().css('cursor', 'default');
		} 
		
		$('#wissenstests_zurueck').bind('click',scroll_zurueck);
		$('#wissenstests_weiter').bind('click',scroll_weiter);
	};
	
	function scroll_weiter(){
		if (action == 0){		
			var oldLeft = parseInt($('#wissenstests_thumbs').css('left'));	
		 	action = 1;
			var gesammtbreite = parseInt($('#wissenstests_thumbs').css('width'));
			if((oldLeft*-1) < gesammtbreite-that.bewegungsbereich*5 ){
				$('#zurueck_wissenstests_img').attr('src', '/img/pfeil_zurueck_aktiv.png');
				$('#zurueck_wissenstests_img').parent().css('cursor', 'pointer');
		       var newLeft = oldLeft - that.bewegungsbereich;
		       $('#wissenstests_thumbs').animate({left:newLeft+"px"}, 300, '', function(){
			    	action = 0;
			    } );  
			} 
			if (oldLeft < -gesammtbreite+that.bewegungsbereich*6){
				$('#weiter_wissenstests_img').attr('src', '/img/pfeil_weiter_inaktiv.png');
				$('#weiter_wissenstests_img').parent().css('cursor', 'default');
				action = 0;
			}  
			content_click(globalAgofCode, prod);     
		}                                                     
		return false;
	}
	function scroll_zurueck(){
     	if(action == 0){
		     var oldLeft = parseInt($('#wissenstests_thumbs').css('left'));
		     action = 1;
		     if(oldLeft <= -73){
		     	$('#weiter_wissenstests_img').attr('src', '/img/pfeil_weiter_aktiv.png');
		     	$('#weiter_wissenstests_img').parent().css('cursor', 'pointer');
			    var newLeft = oldLeft + that.bewegungsbereich;
			    $('#wissenstests_thumbs').animate({left:newLeft+"px"}, 300, '', function(){
			    	action = 0;
			    } );                                            
		     }
			 if (oldLeft > -90) {
		     	$('#zurueck_wissenstests_img').attr('src', '/img/pfeil_zurueck_inaktiv.png');
		     	$('#zurueck_wissenstests_img').parent().css('cursor', 'default');
		     	action = 0;
		     }
		     content_click(globalAgofCode, prod);
	     }
    	 return false;
	}
};
