/**
*	Custom Script for Objektum Solutions
**/

$(function(){	
	//callCoursesCarousel();
});
	
/*****************************************************
* CAROUSEL
* Desc: scrolls through the home images
*****************************************************/	

function callCoursesCarousel() {
	
	var carousel = $("#latest-courses-carousel").carouFredSel({
		items : {
			visible : 1
		},
		width : 290,
		height : 154,
		padding     : "0 0 0 0",
		circular: true,
		auto : {
			play			: false
			/* pauseDuration	: 4000, */
			/* pauseOnHover	: true */
		},
		scroll	: {
			easing : "easeInOutQuint",
			duration: 1500,			
			items: 1
		},
		prev	: {
			button	: "#prev_course"
		},
		next	: {
			button	: "#next_course"
		}
		
	});
}


