;(function($){ $(function(){

  var site_env = 'staging';

  var hide_notice = function()  {
    return true;
    // return ('development' != site_env) && ('seen' == $.cookie('notice'));
  }
  var show_notice = function()  {
    return !hide_notice();
  }

  if ( show_notice() ) {
    $('<a href="/images/site/notices/coming_soon.png"></a>').prettyPhoto({
      'theme': 'dark_square' /* light_rounded / dark_rounded / light_square / dark_square / facebook */
    , 'social_tools': false
    }).trigger('click');
    $.cookie('notice', 'seen', { 'expires': 7 } );
  };

})})(jQuery);
