var voxpro = {
// -------
	init: function() {
		this.prepareDocument();
		// this.enableFancybox();
		this.enableSliders();
	},
// -------
	prepareDocument: function() {
		$('html').addClass('js');
		jQuery('#nav li').hover(
			function() { jQuery(this).addClass('hover'); },
			function() { jQuery(this).removeClass('hover'); }
		);	
	},
// -------
	enableSliders: function() {	
		jQuery('#our-clients ul').nivoSlider({
			effect:'sliceDown', //Specify sets like: 'fold,fade,sliceDown'
			animSpeed:400,
			pauseTime:4500,
			directionNav:false, //Next & Prev
			directionNavHide:false, //Only show on hover
			controlNav:false, //1,2,3...
			controlNavThumbs:false, //Use thumbnails for Control Nav
			controlNavThumbsFromRel:false, //Use image rel for thumbs
			captionOpacity:0.8
		});
		jQuery('#intro').introSlideshow();
	}
// -------
};

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