/**
*	Custom Script for Objektum Solutions
**/

$(function(){	
	callCarousel();
});
	
/*****************************************************
* CAROUSEL
* Desc: scrolls through the home images
*****************************************************/	

function callCarousel() {
	
	var carousel = $("#home-banner").carouFredSel({
		items : {
			visible : 1
		},
		width : 980,
		height : 200,
		padding     : "0",
		auto : {
			play			: true,
			pauseDuration	: 4000,
			pauseOnHover	: true
		},
		scroll	: {
			easing : "easeInOutQuint",
			duration: 0,			
			items: 1,
			onBefore: function(){
				$("#home-banner").fadeOut();
			},
			onAfter: function(){
				$("#home-banner").fadeIn();
			}
		},
		pagination  : "#home-banner-pag"
	});
}


