sfHover = function() {
	var sfEls = document.getElementById("menu").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

$(function(){
	$('#tabela tr:even').css('background', '#dfedf4');
	$('#archiwum li:even').css('background', 'none');
	$('.news:odd').css('background', 'none');
	$('td:first', '#tabela').css('width', '10px');
	$('td:eq(4)', '#tabela tr').css('font-weight', 'bold');
	$('#wyk').css('font-weight', 'bold');
	$("#foto").jCarouselLite({
        btnNext: "#next1",
        btnPrev: "#prev1",
 	    visible: 4
    });
	$("#video").jCarouselLite({
        btnNext: "#next2",
        btnPrev: "#prev2",
		visible: 4
    });
});
