$(window).load(function() {
	$(".homeshow li").css("top","0");
	
	// create a list of the IDs of the list items
	var list = new Array();
	i = 0;
	$(".homeshow li").each( function() {
		list[i] = $(this).attr("id");
		i++;
	});
	
	var cf = new Crossfader( list, 1000, 5000 );
});



