$(document).ready(function() {	
	$("#social-media-toolbar #toolbar-tab a").click(function(e) {
		e.preventDefault();
		toggleSMT();
	});	
});

function toggleSMT() {
	$("#social-media-toolbar .content").animate({
		"height": "toggle"
	}, 500);
	$("#social-media-toolbar").toggleClass("open");
}

function closeSMT() {
	// If the FAQ is visible, then toggle it to closed
	if ($("#social-media-toolbar .content:visible").length>0) {
		toggleSMT();
	}
}
