$(function(){
  // Banner image cycle
  $('#banner-img').cycle({fx:'fade',speed:2000});
  // Awards image cycle (Rooms page)
  $('#awards').cycle({fx:'fade',speed:500, delay:-1600});
  // Awards - expand on hover
  $('.award').width(56).mouseover( function() {
    $(this).stop().animate({width:"112px"},'normal');
  }).mouseout( function() {   
    $(this).stop().animate({width:"56px"},'slow');
  });
});
