$(document).ready(function() {
$('#opcoes').hide();
$('a#email').click(function() {
$('#opcoes').slideToggle();
return false;
});
$('a#twitter').click(function() {
$('#opcoes').slideToggle();
return false;
});
});