$(document).ready(function(){
	var delay = 10000;
	var duration = 1000;

	$('ul#icon_fade').innerfade({ animationtype: 'fade', speed: duration, timeout: delay, type: 'random_start', containerheight: "84px" }); 

	var last_title =  $('ul.homepage_title_fade li:last-child').html();
	var last_image =  $('ul.homepage_image_fade li:last-child').html();
	
	$('ul.homepage_title_fade li:last-child').remove();
	$('ul.homepage_image_fade li:last-child').remove();

	$('ul.homepage_title_fade').innerfade({ animationtype: 'fade', speed: duration, timeout: delay, type: 'fixed_first', containerheight: "120px" }); 
	 setTimeout(function(){
		 $('ul.homepage_image_fade').innerfade({ animationtype: 'fade', speed: duration, timeout: delay, type: 'sequence', containerheight: "272px" }); 
	},200);

	 setTimeout(function(){
		 $('ul.homepage_title_fade li:first-child').html(last_title);
		 $('ul.homepage_image_fade li:first-child').html(last_image);
		 },(delay * 1.5) + duration);

});
