/* Font functions */
Cufon.replace('#navigation .navGlobal a', {
	fontFamily: 'TKTypeRegular',
	fontWeight: '400',
	textShadow: '#E6E5E2 0px 1px'
});

Cufon.replace('#navigation .navGlobal .active', {
	fontFamily: 'TKTypeRegular',
	fontWeight: '400',
	textShadow: 'none'
});

Cufon.replace('h3.sitemap, h4.sitemap, h6, #flashcontent .noflash_overview .right a', {
	fontFamily: 'TKTypeRegular',
	fontWeight: '400'
});

/* Functions */
function toggleBookmarkOverlay(e) {
	$.overlay = $('div#bookmarkOverlay');
	
	if ($.overlay.css('display') == 'none') {
		$.overlay.show();
	} else {
		$.overlay.hide();
	}
	
	if (e.preventDefault) {
		e.preventDefault();
	} else {
		e.returnValue = false;
	}
	
	return false;
}
