var html4u = {
	start : function() {
		this.slideshow();
	},
	
	slideshow: function(){
		$('ul#screenshots').innerfade({
			speed: 'slow',
			timeout: 3000,
			type: 'sequence',
			containerheight: '67px'
		});
	}		
}

function initialize() {
	html4u.start();
}

$().ready(initialize);
