+
+ $('#toggle-share-shelf').hover(
+ function() { $(this).css({background: '#F3F3F3', cursor: 'pointer'}); },
+ function() { $(this).css({background: '#EEE'}); }
+ ).click(function() {
+ if ($('#share-shelf').hasClass('hidden')) {
+ $('#share-shelf').slideDown('fast').removeClass('hidden');
+ } else {
+ $('#share-shelf').slideUp('fast').addClass('hidden');
+ }
+ });
+