$(document).ready( function() {
	$('.werbemittel_fp_artikel').css('overflow','hidden');
	var Gruppen = new Array();
	var begin = 0;
	count=0;
	$('.artikel').each( function() {
		//$(this).hide().css('width','25%');
		Gruppen[count]=$(this);
		count++;
	});
	var gruppenliste_width = ((count+1)*144)+600;

	start_list_animation = function() {
		$('.werbemittel_fp_artikel_innerlist')
			.css('left','600px')
			.height(177)
			.width(gruppenliste_width)
			.animate(
						{ left:'-'+gruppenliste_width+'px' },
						20*gruppenliste_width,
						'linear',
						function(){start_list_animation()}
					);
	};
	start_list_animation();

	/*show_group = function(gr_id) {
		var gr_id = gr_id;
		gr = Gruppen[gr_id];
		gr.animate( { opacity:'1' },
					500,
					'linear'
				   ).show();
		gr.fadeIn();
		window.setTimeout("hide_group("+gr_id+")",5000);
	}
	hide_group = function(gr_id) {
		gr = Gruppen[gr_id];
		gr.animate( { opacity:'0' },
					500,
					'linear'
				   );
		gr.fadeOut();
		animate_list(gr_id);
	}
	animate_list = function(beg) {
		//$('.werbemittel_fp_artikel_innerlist').css('left','600px').height(177).width(gruppenliste_width);
		for (j=0; beg<count && j<4; beg++,j++)
		{
			window.setTimeout("show_group("+beg+")",500);
		}
	};
	animate_list(begin);
*/
	$('#newslist').jScrollPane();
});
