jQuery(document).ready(function($){


/*--- [start] equal height columns with jquery---*/
function equalHeight(group) {
	var tallest = 0;
	group.each(function() {
		var thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}

$(document).ready(function() {
	equalHeight($('div.div'));
});
/*--- [end] equal height columns with jquery---*/


$('div.footer .link-box img').last().css('margin-left','6px')


Cufon.replace('div.logo h1 a', { fontFamily : 'Nobile' });
Cufon.replace('#menu-menu li a', { fontFamily : 'Nobile', hover: true });
Cufon.replace('.left .widget-container ul li a', { fontFamily : 'Nobile', hover: true });
Cufon.replace('.left .widget-container ol li a', { fontFamily : 'Nobile', hover: true });
Cufon.replace('div.right .page-title', { fontFamily : 'Aller', textShadow: '#000 2px 2px'  });
Cufon.replace('div.right .mail-box .mail-content span', { fontFamily : 'Aller' });
Cufon.replace('div.gallery-content h2', { fontFamily : 'BlackJack' });
Cufon.replace('div.right .post-content .post-box .post-title-box a', { fontFamily : 'Nobile', hover: true });
Cufon.replace('div.right .post-content .post-box .post-title-box .phrase', { fontFamily : 'Nobile' });
Cufon.replace('div.right .post-content .post-box .data-box .day', { fontFamily : 'Cantarell' });
Cufon.replace('div.right .post-content .post-box .data-box .mot-year .mot', { fontFamily : 'Cantarell' });
Cufon.replace('div.right .post-content .post-box .data-box .mot-year .year', { fontFamily : 'Cantarell' });
Cufon.replace('.right .post-content .tags h5', { fontFamily : 'Cantarell' });



$('div.menu-box ul li').hover(function(){
	$(this).addClass('hover');
	$(this).children('ul').stop(true, true).fadeIn()	
	}, function(){
		$(this).removeClass('hover');
		$(this).children('ul').stop(true, true).fadeOut()
	});














































});
