jQuery(function($) {
	
	Cufon.replace('.banner-box h2, h2.pagetitle, .main-entry h2');
	
	$('#navigation ul li').hover(
		function() {
			if($(this).find('ul').length > 0) {
				$(this).find('ul').show();
				$(this).addClass('hover');
			}
		},
		function() {
			if($(this).find('ul').length > 0) {
				$(this).find('ul').hide();
				$(this).removeClass('hover');
			}
		}	
	);
	
});