function gallery(){
  $('#photos').galleryView({
    panel_width: 960,
    panel_height: 260,
    frame_height: 80,
    transition_speed: 400,
    transition_interval: 3000,
    easing: 'easeOutQuad',
    pause_on_hover: true,
    frame_gap: 7,
    pointer_size: 8,
    frame_opacity: .8
  });
};

function messageBox(){
  $(".message").slideDown(1000).delay(4000).slideUp(500);
}


// usage: log('inside coolFunc',this,arguments);
// paulirish.com/2009/log-a-lightweight-wrapper-for-consolelog/
window.log = function(){
  log.history = log.history || [];   // store logs to an array for reference
  log.history.push(arguments);
  if(this.console){
    console.log( Array.prototype.slice.call(arguments) );
  }
};

