function SlideShow (interval) {
	var interval = interval;
	this.slideShow = function () {
		var $active = $('#slideshow .active');
		var $activeLogo = $('#logobox .active');
		var $next = ($('#slideshow .active').next().length > 0) ? $('#slideshow .active').next() : $('#slideshow img:first');
		var $nextLogo = ($('#logobox .active').next().length > 0) ? $('#logobox .active').next() : $('#logobox img:first');


		$active.fadeOut(interval / 2.5).removeClass('active');
		$activeLogo.fadeOut(interval / 2.5).removeClass('active');

		$next.fadeIn(interval / 2.5).addClass('active');
		$nextLogo.fadeIn(interval / 2.5).addClass('active');

	};

	this.start = function () {
		setInterval(this.slideShow, interval );
	};
}