$(document).ready(function() {
  
  // =============
  // = SLIDESHOW =
  // =============  
  $('div.slideshow').slideshow({
    // description:$('ul.acties').get(0), 
    intervalTime:4000, 
    slide_cb:function() {
    
    }, 
    bullets:true,
    arrows:true 
  });

  // arrows slideshow
  $('div.slideshow').hover(
    function() {
      $(this).children('div.arrows').addClass('hover');
  },
    function() {
      $(this).children('div.arrows').removeClass('hover');
  });
  
  // random colors
  var colors = ['purple', 'blue', 'green', 'pink'];
  var index = Math.floor(Math.random() * colors.length);
  
  // taal switch
  if ($('body').hasClass('en')) {
    $('a#en').addClass('active').siblings('a').removeClass('active');
  } else {
    $('a#nl').addClass('active').siblings('a').removeClass('active');
  }
  
  // console.log(colors[index]);
  $('body').addClass(colors[index]);
  
  // // projects - fade in by mousover
  // $('body#projecten div#small img').mouseover(function(){
  //   var image = $(this).attr('id');
  //   var bovenop = $('body#projecten div#large img.bovenop');
  //   
  //   // oude foto
  //   bovenop.addClass('erachter');
  //   
  //   // nieuwe foto
  //   $('body#projecten div#large img#' + image).hide().addClass('bovenop').fadeIn(function() {
  //     bovenop.removeClass('bovenop erachter');
  //   });
  // });
  
  
  
  
  
  
  
});
