// Animate list (selects child <ul> of #content)

var List; /* !! GLOBAL !! */

jQuery(document).ready(function() 
	{
	List = jQuery('#content ul.step-in').css('visibility', 'hidden');
	});

jQuery(window).load(function()
	{
	function blockAppear(JQelement)
		{
		if (JQelement.length) JQelement.fadeIn(200, function () {
			if (jQuery.browser.msie) this.style.removeAttribute('filter');			
			blockAppear(jQuery(this).next());
			});
		}

	List.height(List.height());
	List.css('visibility', 'visible').find('li').hide();
	blockAppear(List.find('li:first'));
	});

