$().ready(function() {
  
  // jqTransform
  $('form').jqTransform();
 
  // Product dropdown
  $('ul.dropdown').superfish({
    autoArrows: true
  });

  
  // Frontpage slider
  
  $('#slider').codaSlider({
   autoSlide: true,
   autoSlideInterval: 4000,
   autoSlideStopWhenClicked: true,
   dynamicArrows: false,
   dynamicTabsPosition: "inside"
  });
  
  // Frontpage featured product rotate
  
  $('#featured #rotator').cycle({ 
      delay:  300, 
      speed:  200, 
      before: onBefore
  });
  
  function onBefore() { $('#featured .information').html('<h5>' + $(this).attr('alt') + '</h5><div>' + $(this).attr('title') + '</div>');};
    
  // Features / categories box

   $('#box .panels li:lt(4)').css('border-top: 1px solid #ccc');
  
  $('#box .panels li:nth-child(4n)').attr('style', 'clear: both; margin-left: 0;');  
  $('#box #tabs li').click(function () {
    if (!$(this).hasClass('active')) {
      $('#box #tabs li').removeClass('active');
      $(this).addClass('active');
      
      var current_tab = $(this).attr('class').split(' ');
      
      $('#box .panel').removeClass('active').attr('style', 'display: none');
      $('#box .panel.' + current_tab).addClass('active').attr('style', 'display: block');
    }  
  });
  
  // Product page
  
  $('#product .photo').hover(function () {
    $('.enlarge', this).toggleClass('icon');
  });
});

