if(typeof jQuery != 'undefined') {
	$(document).ready(function() {
		
		// start page fade
		$('.info-box').innerfade({
			animationtype: 'fade',
			speed: 500,
			timeout: 6000,
			type: 'sequence', //Type of slideshow: 'sequence', 'random' or 'random_start' (Default: 'sequence'),
			containerheight: $('.info-box').height(),
			runningclass: '',
			children: '.frame'
		});
		
	});
}