$(document).ready(function() {
	// tekst scrollowany
	var s = $('div.scroll>div');
	
	if (s.length) {
		s.addClass('scroll-inner');
		var scrollAreaWidth = s[0].offsetWidth;
		
		s.css('display', 'block');
		var visibleWidth = $('div.scroll').width();
		
		if (scrollAreaWidth >= visibleWidth) {
			scrollAreaWidth = s[0].scrollWidth;
		}
		maxScroll = scrollAreaWidth+visibleWidth+40;
		scrollAreaWidth += (visibleWidth+40)*2;
			
		s.wrapInner('<span style="width: '+scrollAreaWidth+'px; display: inline-block; text-align: center" />');
		s.mouseover(function() {
			scrollingActive = false;
		})
		s.mouseout(function() {
			scrollingActive = true;
		})
		scrollingActive = true;
		
		scrollPos = 0;
		scrollInterval = 15;
		scrollElem = s[0];
		
		setTimeout(scrollText, scrollInterval);
	}
	
	
	$('.tabela-w-paski tr:even').addClass('odd');
	
	// wysokosc contentu
	var h = $('#sideLeft').height()-7;
	$('#content').css('min-height', h+'px');
});

function scrollText() {
	if (scrollingActive) {
		scrollPos += 1.5;

		if (scrollPos > maxScroll) {
			scrollPos = 0;
		}

		scrollElem.scrollLeft = scrollPos;
	}
	setTimeout(scrollText, scrollInterval);
}

