$(document).ready(function(){

  $('#menu li.node').hover(
    function() {
      $('ul', this).css('display', 'block');
      $(this).addClass('nodehover');
    },
    function() {
      $('ul', this).css('display', 'none');
      $(this).removeClass('nodehover');
    }
  );



  /* News Scroller */
  $('.start_news .iCmsModuleNewsPlugin_articles').wrap('<div class="scrollable" />');
  $('<div class="iCmsModuleNewsPlugin_scrollable_nav"><a class="prev">&lt; '+$('#language_hidden_field_prev').text()+'</a> | <a class="next">'+$('#language_hidden_field_next').text()+' &gt;</a></div>').insertBefore('.start_news .scrollable');
  $(".scrollable").scrollable({circular: true}).autoscroll();

  /* ColorBox */
  $.fn.colorbox.settings.bgOpacity = "0.9";
  $("a[href$='.jpg'],a[href$='.JPG'],a[href$='.png'],a[href$='.PNG'],a[href$='.bmp'],a[href$='.BMP'],a[href$='.gif'],a[href$='.GIF']")
    .attr('rel','Obrazki')
    .colorbox({transition:"elastic", contentCurrent:"{current} / {total}", initialWidth:"200", initialHeight:"150", maxWidth: "100%", maxHeight: "100%"});

  /* Partners */
  // Podswietlanie logotypow
  $("#start_partners img").hover(
    function(){ this.src = this.src.replace("_off.","_on."); },
    function(){ this.src = this.src.replace("_on.","_off."); }
  );
  $("#start_partners").smoothDivScroll({ autoScroll: "always", autoScrollDirection: "endlessloopright", autoScrollStep: 1, autoScrollInterval: 25 });
  // Logo parade event handlers
  $("#start_partners").bind("mouseover", function() {
    $(this).smoothDivScroll("stopAutoScroll");
  }).bind("mouseout", function() {
    $(this).smoothDivScroll("startAutoScroll");
  });
});
