function tweetMeetingClicked(tweet, id)
{
    variables="action=tweetMeeting&id="+id+"&tweet="+tweet;
    $.post("php/siteActions.php",variables,function(response){
	    $("div#notifications").html("Your tweet has been sent out");
	    $("div#notifications").show();
	});
}

function tweetEventClicked(id)
{
    variables="action=tweetEvent&id="+id;
    $.post("php/siteActions.php",variables,function(response){
	    $("div#notifications").html("Your tweet has been sent out");
	    $("div#notifications").show();
	});
}


function emailMeetingClicked(id)
{

}

