$(document).ready(function() {
	// Clear the nav item's content
	$('#nav-items').html('');
	
	// Homepage slideshow
	$('div#slideshow-items').cycle({
		fx : 'fade',
		pager : '#slideshow-nav #nav-items',
		next : '#slideshow-next',
		prev : '#slideshow-prev',
		before : function(c, n, o, f) {
			$('#slideshow-content').html($(this).children('img').attr('alt'));
		}
	});
	$('#nav-items a').each(function() {
		$(this).html('<span>'+$(this).html()+'</span>');
	});
});