$(function(){

  // Front page cycles
  $('#roll_1, #roll_3').cycle({timeout: 5000, delay: 8000});
  $('#roll_2').cycle({timeout: 5000});

  // Make the entire box a link
  $('#boxes div').click(function(){
    window.location=$(this).find('a').attr('href');
    return false;
  });

  // Make items flow into multiple columns
  $('#items, #spots').npColumns({
    item: 'p',
    cols: 3
  });

  $('#shops').npColumns({
    item: 'p',
    cols: 4
  });

  $('#eateries').npColumns({
    item: 'p',
    cols: 5
  });

  $('#photo_bar').scrollable({
    horizontal: true,
    items: '.container'
  });

  if (!$.browser.msie) {
    $('#photo_bar .prev, #photo_bar .next').css('opacity', 0.2);
    $('#photo_bar .prev, #photo_bar .next').hover(
      function() { $(this).animate({'opacity': 1}) },
      function() { $(this).animate({'opacity': 0.2}) }
    );
  }

  $('#photo_bar a').zoomimage({
    centered: true,
    beforeZoomIn: function(){
      $(this).zoomimageClear();
    },
    opacity: 1,
    controls: false
  });

  /*
   *  --- Fonts ---
  */

  Cufon.replace('#nav', { textShadow: '1px 1px #c5a568' });

  /*
   * --- Specials Page ---
  */

  $('.tour').corner();
  $('.tour-img').corner('5px');

});

