var Website = {
	run: function(){
		var oSlider3 = $('#carousel-home');
		if(oSlider3.length > 0){
			oSlider3.tinycarousel({ interval: true, intervaltime: 5000 });
		}
	}
};


//Initialize
$(document).ready(function(){
	Website.run();
});