//USTAWIENIA
var el='div#slider', width=680, height=100, czas_przejscia_przez_pole=7000,margin_right=10;

//**********/
var img_w=0, banner_interval, obrazow, czas;

$(document).ready(function(){

	//css
	$(el).css({width:width+'px',height:height+'px',overflow:'hidden',position:'relative'});
	$(el+' img').css({position:'absolute',top:'0'});
	
	//ustawienie left w img
	obrazow = $(el+' img').length;
	for(i=1;i<=obrazow;i++){
		$(el+' img:nth-child('+i+')').css({left:(width+margin_right+img_w)+'px'});
		img_w+=$(el+' img:nth-child('+i+')')[0].width+margin_right;
	}
	
	czas = (czas_przejscia_przez_pole*(width+img_w))/width;
	
	przejscie();
});

function przejscie(){
	$(el+' img').animate({
    left: '-='+(img_w+width),
  }, czas,'linear',function() {
    $(el+' img').animate({
			left: '+='+(img_w+width),
		},0);
		przejscie();
	});
}
