$(document).ready(function() {

  if ($('#js-posts').length != 0) {
  $('#js-posts').ticker({
    controls: false,
    titleText: '',
    displayType: 'fade',
    pauseOnItems: 5000,
    fadeInSpeed: 600,
    fadeOutSpeed: 300
  });
  }

  /* Drop-down menus on hover */
  $('ul#nav-en li').hover(
    function() { $(this).find('ul.subnav').fadeIn(); },
    function() { $(this).find('ul.subnav').fadeOut(); }
  );
   $('ul#nav-tr li').hover(
    function() { $(this).find('ul.subnav').fadeIn(); },
    function() { $(this).find('ul.subnav').fadeOut(); }
  );

  $('#slideshow').slideShow();
  $('#rotator-brands').slideShow();

  // Tablar
  $(".tab-content").hide();
  $("ul.tabs li:first").addClass("active").show();
  $(".tab-content:first").show();

  $("ul.tabs li").click(function() {
    $("ul.tabs li").removeClass("active");
    $(this).addClass("active");
    $(".tab-content").hide();
    var activeTab = $(this).find("a").attr("href");
    $(activeTab).fadeIn();
    return false;
  });
})

$.fn.slideShow = function(timeOut) {
  var $elem = this;
  this.children(':gt(0)').hide();
  setInterval(function() {
    $elem.children().eq(0).fadeOut().next().fadeIn().end().appendTo($elem);
  }, timeOut || 6000);
};

