function showDropDown() {
  // DropDown html
  var html = '';
  html += '<div id="topbar-container">';
  html +=    '<div id="topbar-container-inner">';
  html +=      '<div id="topbar-left">';
  html +=        'Over 7,000 high-res packaging images from around the world<br/>';
  html +=        'Package design inspiration from 40+ countries<br/>';
  html +=        'Download images for presentations<br/>';
  html +=        'Affordable pricing plans';
  html +=      '</div>';
  html +=      '<div id="topbar-right">';
  html +=        '<div style="float: left; margin-right: 20px"><a href="#" onClick="show_popup = 1; jump_to_video_tour = 1; set_cookie(\'fire_video_tour\', \'1\'); fireMyPopup(); return false;"><img src="/themes/matrix/images/tour_btn.png" /></a></div>';
  html +=        '<div style="float: left"><a href="/main.php?g2_view=core.UserAdmin&g2_subView=freetrial.UserSelfRegistration&g2_return=%2Fmain.php%3F&g2_returnName=album"><img src="/themes/matrix/images/trial_btn.png" /></a></div>';
  html +=        '<div style="clear:both"></div>';
  html +=        '<div style="color: #DA8109; font-size: 18px; margin-top: 10px; width: 500px">';
  html +=          'You may view unlimited thumbnails and up to three high-resolution images for free right now. Try it!';
  html +=        '</div>';
  html +=      '</div>';
  html +=      '<div style="clear: both"></div>';
  html +=    '</div>';
  html +=    '<div class="arrow"></div>';
  html +=  '</div>';
  html +=  '<div style="clear:both"></div>';

  jQuery('div#gallery').before('<div id="topbar-spacer" style="height: 55px"></div>').css('padding-top', '55px');
  jQuery('body.gallery').prepend(html);
  
  // DropDown functionality
  jQuery('#topbar-container .arrow').toggle(
    function() {
      jQuery('#topbar-container-inner').stop().animate({'height' : '42px'}, 1000);
      jQuery('#topbar-container').css('height', '65px');
      jQuery('#topbar-spacer').stop().slideUp(1000);
      jQuery('#topbar-left').stop().animate({'height' : '20px'}, 900);
      jQuery(this).css('background-image', 'url(\'/themes/matrix/images/topbar-arrow-collapsed.png\')');
    },
    function() {
      jQuery('#topbar-container-inner').stop().animate({'height' : '99px'}, 1000);
      jQuery('#topbar-container').css('height', '119px');
      jQuery('#topbar-spacer').stop().slideDown(1000);
      jQuery('#topbar-left').css('height', 'auto');
      jQuery(this).css('background-image', 'url(\'/themes/matrix/images/topbar-arrow-expanded.png\')');
    }
  );
  
}