	var ddd_timer		= false;

	var imagewidth = 213;
	
	var imagecount = 5;
	
	var act_imagecount = 1;

	var pixel = 1;
	var scroll_margin = 0;
		
	var delay = 10;
	var speed = 30;
	
		function scroll(a) {
			//document.all.inner_container.style.setAttribute("scroll_marginLeft", "-15px", false);

		speed = 30;
			
			if (a == "rechts") {
				
				if (act_imagecount > 1 ) {
					scroll_margin = scroll_margin + 242;
					act_imagecount --;
					scroll_moveright(scroll_margin);
				} else {
					document.getElementById("scroll_rechts").style.visibility = "hidden";			
				}
				
				
			} else {
				if (act_imagecount < imagecount) {
					scroll_margin = scroll_margin - 242;
					act_imagecount ++;
					scroll_moveleft(scroll_margin);
				} else {
					document.getElementById("scroll_links").style.visibility = "hidden";			
				}
			}
			
			
			
		}	

	
		function scroll_moveright(scroll_margin) {
					document.getElementById("scroll_links").style.visibility = "visible";
					clearTimeout(ddd_timer);

					document.getElementById("scroll_inner_container").style.marginLeft = pixel + "px";
			
				if (pixel < scroll_margin) {
					ddd_timer = setTimeout( "scroll_moveright(" + scroll_margin + ")", delay );
				}
					pixel = pixel + speed;
					speed = speed / 1.16;
					
			}
			function scroll_moveleft(scroll_margin) {
					document.getElementById("scroll_rechts").style.visibility = "visible";			
							
					clearTimeout(ddd_timer);

					document.getElementById("scroll_inner_container").style.marginLeft = pixel + "px";
			
				if (scroll_margin < pixel) {
					ddd_timer = setTimeout( "scroll_moveleft(" + scroll_margin + ")", delay );
				} else {
					
				}
					pixel = pixel - speed;
					speed = speed / 1.16;

}

 //tracking include
 document.write('<script type="text/javascript" src="http://www3.chrysler.de/logging.js"></script>'); 
