function initialize(){
	startit()
}

function scrollwindow(){
	akcja_box = document.getElementById("akcja");	
	box_1 = document.getElementById("box1");
	box_2 = document.getElementById("box2");

	szerokosc=box_1.offsetWidth;	

	akcja_szerokosc=2*szerokosc;
//	alert(szerokosc + ' | ' + akcja_szerokosc);
	szerokosc_minus=szerokosc*(-1);


	akcja_box.style.padding=0; 
	akcja_box.style.width=akcja_szerokosc + 'px'; 
	
	if( (akcja_box.style.padding=='inherit inherit inherit inherit') || (akcja_box.style.padding=='') || (akcja_box.style.padding=='inherit') ){ 
		akcja_box.style.left=szerokosc_minus + 'px';
	}

	current_x=parseInt(akcja_box.style.left);
	if(current_x<0){ akcja_box.style.left=current_x+2 + 'px'; }
	else{ akcja_box.style.left=szerokosc_minus + 'px'; }
}

function startit(){
	setInterval("scrollwindow()",40)
}
