/************************************************************************/// // NIVO SLIDER ///************************************************************************/
$(window).load(function() {
	$('#sliderholder').nivoSlider({
	    effect: 'random',
		slices:20,
		animSpeed:300,
		pauseTime:5000,
		startSlide:0, //Set starting Slide (0 index)
		directionNav:false, //Next & Prev
		directionNavHide:true, //Only show on hover
		controlNav:true, //1,2,3...
		keyboardNav:true, //Use left & right arrows
		pauseOnHover:true, //Stop animation while hovering
		manualAdvance:false, //Force manual transitions
		captionOpacity:100 //Universal caption opacity
	});
});

$(document).ready(function () {

    $.featureList(
				$("#tabs li a"),
				$("#output li"), {
				    start_item: 0
				}
			);

    /*
			
    // Alternative

			
    $('#tabs li a').featureList({
    output			:	'#output li',
    start_item		:	1
    });

    */

});
