frontend.imageSlider = {}

// Settings
frontend.imageSlider.settings = {};
frontend.imageSlider.settings.forward 	= 30;
frontend.imageSlider.settings.left 		= 1;

// init Funktion
frontend.imageSlider.init = function() {
	frontend.imageSlider.interval = window.setInterval(frontend.imageSlider.cbForward, frontend.imageSlider.settings.forward);
	$('#slider').children('img').show();
}

// Die Funktion die nach rechts scrollt
frontend.imageSlider.cbForward = function() {
	var ul = $('#slider-images'); 
	ul.get(0).scrollLeft += frontend.imageSlider.settings.left;
	
	if (ul.get(0).scrollLeft >= +$('li:first', ul).width() + 40) {
    $('li:first', ul).appendTo(ul);
    ul.get(0).scrollLeft = 0;
	}
}

$(frontend.imageSlider.init);
