			$(document).ready(function() {
					var bsx = 0;
					var bs = document.getElementById('slider');
					moveSlider = function() {
						if(bsx>0) {
							bsx--;
						} else {
							bsx = 800;
						}
						document.getElementById('slider').style.backgroundPosition = bsx + 'px 0px';
						
					}
					bs.onclick = function() {
						location.href = 'http://www.lsbb.lv/Par-mums/';
					}
					moveSlider();
					var si = window.setInterval("moveSlider()", 30);
					

			});
