/**
 **************************************************
 *
 *  This file was created by L.B. Cohn.
 *  This file is made available as Copyleft Share-Alike.
 *
 **************************************************
 */
  
  $(document).ready(function() {
    
    /**
     **************************************************
     *
     *  Image slider
     *
     **************************************************
     */
    $('div#slider_links ul li a').live('click', function() {
      // Content
      var item = $(this).attr('href').substring($(this).attr('href').length -1);
      
      // Buttons
      var active_item = $('div#slider_content ul li[class$="active"]');
      var active_item_nr = active_item.attr('class').substring(active_item.attr('class').length -8, active_item.attr('class').length -7);
      var active_button = $('div#slider_links ul li img[src$="_active.png"]');
      var button_nr = active_button.attr('src').substring(active_button.attr('src').length -12, active_button.attr('src').length -11);
      var child = $(this).children();
      var img_src = child.attr('src');
      
      // Content
      $('div#slider_content ul li.active').fadeOut().removeClass('active');
      $('div#slider_content ul li.slider_' + item).fadeIn().addClass('active');
      
      // Buttons
      active_button.wrap('<a href="index.php?slider=' + active_item_nr + '" title="Kies project" />');
      active_button.attr('src', active_button.attr('src').substring(0, active_button.attr('src').length -11) + '.png');
      child.attr('src', img_src.substring(0, img_src.length -4) + '_active.png');
      child.unwrap();
      
      // Link to project
      $('div#slider a').attr('href', 'project.php?id=' + item);

      return false;
    });
    
    
    
  });
