//=== Open Page Tags
var SEOP_OPEN = false;
function openPageTags() {
	if (SEOP_OPEN) {
		closePageTags();
	} else {
		jQuery('#page-tags').slideDown(900);
		SEOP_OPEN = true;
	}
}

// ======================================
// === Close Page Tags
function closePageTags() {
	jQuery('#page-tags').slideUp(900);
	SEOP_OPEN = false;
}

