$(function(){
  $('#slideshow').slides({
    preload: true,
    generateNextPrev: true,
    play: 4000
  });

  var h = 0;
  $('#hp-cols .col').each(function() {
    if ($(this).height() > h)
      h = $(this).height();

    var a = $(this).find('a:last');
    if(! a.find('span').length) {
      a.html('<span>' + a.html() + '</span>');
    }

    if (! a.length)
      return;

    $('#hp-cols .col').click(function() {
      window.location = $(this).find('a:first').attr('href');
    });

    $('#hp-cols .col').css('cursor', 'pointer');
    
    $('#hp-cols .col').hover(function() {
      $(this).find('a').addClass('hover');
    }, function() {
      $(this).find('a').removeClass('hover');
    });
  });

  $('#hp-cols .col').height(h);
});
