$(function()
{
  $('#slides').before('<div id="nav-slideshow">').cycle(
  {
    fx: 'fade',
    timeout: 6000,
    width: 980,
    height: 400,
    fit: 1,
    containerResize: 0,
    pager:  '#nav-slideshow'
  });
  
  $("#products-select").easySlider({
    width: 850,
    height: 145,
    pause: 8000,
    auto: true,
    continuous: true,
    nextId: "nextBtn-1",
    prevId: "prevBtn-1"
  });
  
  $("#pictures-select").easySlider({
    width: 400,
    height: 88,
    auto: false,
    continuous: true,
    nextId: "nextBtn-2",
    prevId: "prevBtn-2"
  });
  
  $('#pictures-select li a').click(function () {
      var big = '<img src="'+$(this).attr("href")+'" alt="" />';
      
      $('#featured div').html(big);  
      $('#featured h4').html($(this).attr("title"));
      
      $('.current').removeClass('current');
      $(this).addClass('current');
      
      return false;
  });
});
