var j=$.noConflict()

j(document).ready(function() {    
    //lista nowosci aktualnosci
    j('#list_news').fadeIn(500).jcarousel({
        vertical: true,
        scroll: 2
    });
    j(".baner_news").hide();
    //slider zdjec aktualnosci 
    j("#slider_galeria").nivoSlider();
    //6 banerow
    animBaners(0); 
    
    //j("ul.move_box").fadeIn(200);
    
    //j.include('/js/wyjazd.js');
    j.getScript("/js/wyjazd.js");
    //var wyjazd = j('<script type="text/javascript" src="/js/wyjazd.js"></script>');
    //j("head").append(""+wyjazd+"");   
    
    
});

function animBaners(start){
  start--;
  if(start<0){start=1;}
  if(start==1){
    j(".baner_news li").fadeIn(300);
    j(".baner_news li:nth-child(1)").hide();
    j(".baner_news li:nth-child(3)").hide();
    j(".baner_news li:nth-child(5)").hide();
    setTimeout("animBaners("+start+")",4000);
  }else{
    j(".baner_news li").fadeIn(300);
    j(".baner_news li:nth-child(2)").hide();
    j(".baner_news li:nth-child(4)").hide();
    j(".baner_news li:nth-child(6)").hide();
    setTimeout("animBaners("+start+")",6000);
  }
  
}
