$(document).ready(function() {

	//	Homepage Slideshow
	
	$('#slide-container').easySlider({
		auto: false,
		continuous: true,
		nextId: 'slider-next',
		prevId: 'slider-prev'
	});

	$('#twitter-status #twitter-link').css({'textAlign':'center'});

	//	Navigation Character Hightlight	
	
	$('#top .menu li a').each(function(i) {
		$(this).html( $(this).html().replace(/[nN]/g,"<span>n</span>") );			//	Replace nN with any other character you want to highlight.
		$('span:last',this).addClass('highlight');
	});
	
	$('#footer .menu li a').each(function(i) {
		$(this).html( $(this).html().replace(/[nN]/g,"<span>n</span>") );			//	Replace nN with any other character you want to highlight.
		$('span:last',this).addClass('highlight');
	});	
	
});
