$(document).ready(function(){
    $("#slider").easySlider({
        auto: false
    });
	$('#produkty ul li ul li a').each(function(){
		if(($(this).attr("href")+location.search) == window.location.href)
		{
			$(this).parent().parent().parent().addClass("selected");
		}
	});

	$('#produkty ul li a').click(function(){
		$(this).next("ul").slideToggle();
		$(this).parent().toggleClass("selected");
	});
});
function changeBanner(){
    var all=parseInt(document.getElementById('banners_num').value);
    var i;
    var check=0;
    var showBanner=0;
    for(i=0;i<all;i++){
        if(document.getElementById('banner'+i).style.display!='none')
            check=i;
        document.getElementById('banner'+i).style.display='none';
    }
    if((check+1)>=i)
        showBanner=0;
    else
        showBanner=check+1;
    document.getElementById('banner'+showBanner).style.display='';
}
