/*!
 * CICICARMEN.INFO namespace, includes all page functionality.
 * @author Chris Kennedy - KENVAR
 */
 
Cici = {}

Cici.Global = {
	elements : {
		subPics : $(".cici-img-carousel")
	},
	
	initialize : function(){
		var _this = this;
		
		//Homepage subPics carousel 
		_this.elements.subPics.cycle({
			fx : "fade",
			speed : 400,
			timeout : 2400
		});	
	}
}

/**
 *Initialize all functionality on pageload. 
 */
$(function(){
	Cici.Global.initialize();
});
