window.addEvent('domready', function() {
 
	/**
	 * That CSS selector will find all <a> elements with the
	 * attribute rel="boxed"
	 *
	 * The second argument sets additional options.
	 */
	 var slide = new Fx.Slide('share');
	slide.hide();
	
	$('sharebutton').addEvent('click', function(event) {
	event = new Event(event).stop();
	slide.toggle();
	});

	
	
 
});