/* 
** Theme:    Definition
** Author:   Phoenix Zero
** Document: Javascript Plugin Settings
*/

<!-- Cufon -->

	Cufon.replace('h1'); /* replaces h1, h2, h3, h4, h5, and h6 headings with the custom Cufon font */
	Cufon.replace('h2');
	Cufon.replace('h3');
	Cufon.replace('h4');
	Cufon.replace('h5');
	Cufon.replace('h6');
	Cufon.replace('#nav ul li'); /* replaces the main navigation with the custom Cufon font */

<!-- End Cufon -->

<!-- jQuery Cycle Plugin -->

$(document).ready(function(){ /* script operates once the page is loaded */
	
	$('#featured-image').cycle({ 
    	fx:     'scrollRight', /* transition effect (for a full list of transitions, visit http://malsup.com/jquery/cycle/browser.html) */
    	speed:  700, /* speed of transition (in milliseconds) */
    	timeout: 15000, /* time between automatic transitions (0 = no auto transitions) */
		easing: 'easeinout', /* transition easing effect */
    	pager:  '#featured-navigation', /* navigation that controls the slider (do not edit) */
    	pagerAnchorBuilder: function(idx, slide) { return '#featured-navigation a:eq(' + idx + ')'; } /* DO NOT DELETE */
	});
	
	$('#featured-slides').cycle({ 
    	fx:     'scrollVert', /* transition effect (for a full list of transitions, visit http://malsup.com/jquery/cycle/browser.html) */
    	speed:  1000, /* speed of transition (in milliseconds) */
    	timeout: 15000, /* time between automatic transitions (0 = no auto transitions) */
		easing: 'bounceout', /* transition easing effect */
    	pager:  '#featured-navigation', /* navigation that controls the slider (do not edit) */
    	pagerAnchorBuilder: function(idx, slide) { return '#featured-navigation a:eq(' + idx + ')'; } /* DO NOT DELETE */
	});
	
	
});

<!-- End jQuery Cycle Plugin -->
