$(document).ready(function() {
	Andersson.Carousel.init();
});

var Andersson = {};

Andersson.Carousel = {
	init:function() {
		if ($('#loopedslider').length > 0) {
			$("#loopedslider").loopedSlider({
				autoStart: 9000,
				containerClick: false,
				slidespeed: 1000
			});
		}
	}
};

