Cufon.replace('.logo a', {
			hover: 'true',
			fontFamily : 'Castellar'
	
});

Cufon.replace('#content h1, h2, h3', {
			hover: 'true',
			fontFamily : 'Trebuchet MS Bold'
});

Cufon.replace('.greenBox h4', {
			hover: 'true',
			fontFamily : 'Gothic 725'
});

$(document).ready(function(){				
	$('.current-item').children('a').wrap('<span />');
	$('#footerNav li').last().addClass('bg-none');
	var footNavWidth = 0;
	$('#footerNav li').each(function(){
			footNavWidth = footNavWidth + $(this).width()+16; 
	});
	
	$('#footerNav').css('width', footNavWidth);
	$('.sideNav li').first().addClass('firstItem');
	$('.sideNav li').last().addClass('lastItem');
});	


				
$(function() {

// enable circular scrollables with a click handler
$(".scroll").scrollable({ circular: true }).click(function() {
	$(this).data("scrollable").next();		
}).autoscroll({ autoplay: true });
});

