$(document).ready(function(){

//transitions on the first page
    $('ul#animate').innerfade({
				speed: 2000, //<------ use this to change the speed of the fade ... too big and cpu usage will go past 50% (bad)
				timeout: 6000, //<---- and this to change the amount of time between the fade
				type: 'sequence',
				containerheight: '225px'
	});
});