$(function(){	
	callFeatureCarousel();
});

function callFeatureCarousel() {
		
	var carousel = $("#feature_gallery .slides").carouFredSel({
		width : 900,
		height: 425,
		items : {
			visible : 1
		},
		padding     : "0 0 0 0",
		auto : {
			play			: true,
			pauseDuration	: 6000,
			pauseOnHover	: true
		},
		scroll	: {
			easing : "easeInOutQuint",
			duration: 100,			
			items: 1,
			
			onBefore: function(){
				$("#feature_gallery .slides").fadeOut();
			},
			onAfter: function(){
				$("#feature_gallery .slides").fadeIn();
			}						
		},
		prev	: {
			button	: "#project_prev"
		},
		next	: {
			button	: "#project_next"
		},
		pagination: "#feature_pagination"
	});	
}

