jQuery(function( $ ){
	
	if ($("#slider").length){
			$('#slider').nivoSlider({
				effect: 'fade',
				boxCols: 8, // For box animations
				boxRows: 6, // For box animations
				animSpeed: 300, // Slide transition speed
				pauseTime: 3000, // How long each slide will show
				startSlide: 0, // Set starting Slide (0 index)
				directionNav: false, // Next & Prev navigation
				directionNavHide: true, // Only show on hover
				controlNav: false, // 1,2,3... navigation 
        		pauseOnHover: false, // Stop animation while hovering
			});
	}
	
	if ($("a.lightbox-tour").length){
		$("a.lightbox-tour").fancybox({
			'titlePosition'	: 'inside'
		});
	}
});
