$(document).ready(function() {

  // Slideshow.

  $('div#slideshow-inner-2').cycle({
    slideExpr: 'div.slide p.image',
    pager: 'div#slideshow-pager',
    speed: 4000,
    before: function(currentslide, nextSlide) {
      $('div#slideshow-strapline').fadeOut('fast', function() {
        $(this).html(
          $(nextSlide).parents('div.slide').find('div.strapline').html()
        ).fadeIn('fast');
      });
    }
  });

  // Buttons.

  $('div#buttons ul li img').click(function() {
    window.location = $(this).parents('li').find('a').attr('href');
  });

  // Information switcher.

  $('div#information-switcher ul li a').click(function() {

    $('div#information-switcher ul li.on').removeClass('on');
    $(this).parents('li').addClass('on');

    $('div#information-panel div.information:visible').hide();
    $('div.information#' + $(this).attr('rel')).show()

    $('div#information-switcher div#information-view-all a').html('View All ' + $(this).html());
    $('div#information-switcher div#information-view-all a').attr('href', '/' + $(this).attr('rel') + '/');

    return false;
    
  });

  $('div#information-switcher a:first').click();

  // Information thumbnail click.

  $('div.products ul li p.thumbnail, div.announcements ul li p.thumbnail').click(function() {
    window.location = $(this).parents('li').find('a').attr('href');
  });

  // News heading click.

  $('div#news ul li h2').click(function() {
    window.location = $(this).parents('li').find('a').attr('href');
  });

});
