var nsf = {
// -------
	init: function() {
		this.prepareDocument();
		this.enableFancybox();
		this.enhanceFonts();
		this.imageCaptions();
		this.enableSlider();	
	},
// -------	
	enableSlider: function() {	
		$('#slider').nivoSlider({
			effect:'fade', 
			animSpeed:500,
			pauseTime:4000,
			directionNav:false, //Next & Prev
			controlNav:false		
		});
	},	
// -------
	prepareDocument: function() {
		$('html').addClass('js');
		$('#content a', '.contact').each(function(i, o) {
			var address = $(o).text().replace(/\s*\[at\]\s*/, '@').replace(/\s*\[dot\]\s*/g, '.');
			$(o).html('<a href="mailto:' + address + '">'+ address +'</a>');
		});		
	},
// -------	
	enhanceFonts: function() {
		Cufon
			.set('fontFamily', 'Avenir LT 45 Book')
				.replace('#nav')			
			.set('fontFamily', 'Berthold')
				.replace('#nav', { 
					hover: true
				});	
	},	
// -------
	imageCaptions: function() {
		$('figure', '.boxes').hover(
			function() {
				$(this).find('figcaption').animate({height:'show'}, 400);
			},
			function() {
				$(this).find('figcaption').animate({height:'hide'}, 200);
			}			
		);
	},	
// -------
	enableFancybox: function() {
		$('a:has(img):not(.noGallery)', '#main')
			.attr('rel', 'gallery')
			.fancybox({
				'titlePosition': 'outside'
			});
	}
// -------
};

$(function() {
	nsf.init();
});
