// JavaScript Document

$(document).ready(function(){
$('.toggler').click(function(){
$('#sharebox').toggle('fast');
return false;
});
});


