/*

File: sliders.js

For: Landed!
Author: Luke Smith - HisHandiwork.biz
Created: 06/28/11



--- TABLE OF CONTENTS ---


1. CODA SLIDER
2. NIVO SLIDER


*/



/* 1 * CODA SLIDER */
$().ready(function() {
	$('#coda-slider-1').codaSlider({
		autoSlide: true,
		autoSlideInterval: 7000,
		autoSlideStopWhenClicked: true
	});
});

/* 2 * NIVO SLIDER */
jQuery(window).load(function() {
	$('.slider').nivoSlider({
		effect:             'fade',
		startSlide:         0, //Set starting Slide (0 index)
		animSpeed:          300, //Slide transition speed
		pauseTime:          5000,
		captionOpacity:     0.6, //Caption Opacity
		directionNavHide:   true, //Only show on hover
		pauseOnHover:       false //Stop animation while hovering
	});
	
	//Wrap each control nav in list item tags
	$('.nivo-controlNav .nivo-control').wrap('<li />');
	
	//Wrap all control navs in an unordered list
	$('.nivo-controlNav li').wrapAll('<ul />');
});

