$(document).ready(function(){
	initCufon();
	initHover();
	setActiveEl();
});
function initCufon(){	
	Cufon.replace('#menu-main-menu a', {fontFamily: 'Futura Std' , hover:'true'});
	Cufon.replace('h2.entry-title, div.entry-title h2, .top-header span.slogan', {fontFamily: 'Futura Std Bold', color: '-linear-gradient(#fff, #e9e9e9, #cbcbcb, rgb(0, 0, 0))'});
	Cufon.replace('.top-header span.slogan', {fontFamily: 'Futura Std Condensed', fontSize: '20px', color: '-linear-gradient(#fff, #e9e9e9, #cbcbcb, rgb(0, 0, 0))'});
}

function initHover(){
	$('#comments #submit').hover(
		function (){
			$(this).css({
				color: '#252525',
				background: '#D7D7D7'
			});
		},
		function (){
			$(this).css({
				color: '#D7D7D7',
				background: '#252525'
			});
		}
	);
}
function setActiveEl(){
	if(typeof(activeMenu)!='undefined'){
		$(activeMenu).addClass('current_page_item');	
	}
}
