$(document).ready(function() {

				  
/* Discuss-Dropdown */
   $("#discuss_more").hide();	

   $("#discuss_button").toggle(   
   function() {
     $("#discuss_more").show("slow");
   },
   function() {
     $("#discuss_more").hide("slow");
   } 
   );
				  
				  
				  
/* Sharebox */
				  
  var $sharebox   = $("#sharebox"),
  $window    = $(window),
  offset     = $sharebox.offset(),
  bottomPos =  $sharebox.parent().height(),
  topPadding = 15;
				  
  $window.scroll(function() {
				  if ($window.scrollTop() > offset.top && $window.scrollTop() < bottomPos) {
						$sharebox.stop().animate({
								 marginTop: $window.scrollTop() - offset.top + topPadding
						});
				  } else {
						$sharebox.stop().animate({
								 marginTop: 0
						});
				  }
   });
				  

 
});// document ready



