
/* theme drawer hider */
function hideDrawer() {
	$("#theme-drawer").slideToggle("normal", function () {
		if ($("#theme-drawer").is(":visible")) {
			$("#wrapper").css("margin-bottom", "50px");
		} else {
		$("#wrapper").css("margin-bottom", "20px");
		}
	});
} 

