$(document).ready(function(){
	$(window).load(
	    function() {
			var width = 10;
			$('#ssTestimonialRheel div img').each(function(i,val){
				width = width + $(this).width();
			})
			$('#ssTestimonialRheel div').width(width);
			
			$('#ssTestimonialRheelRight').click(function(){
				left = $('#ssTestimonialRheel').scrollLeft();
				$('#ssTestimonialRheel').animate({scrollLeft: '+=150'});
			})
			$('#ssTestimonialRheelLeft').click(function(){
				left = $('#ssTestimonialRheel').scrollLeft();
				$('#ssTestimonialRheel').animate({scrollLeft: '-=150'});
			})
	    }
	);

	// Fancybox beim Klick auf die CAM
	$("div#ssTestimonialRheel a").fancybox({
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});
})
