jQuery(document).ready(function($){

$doFade = function() {
	$('div.child:hidden:first').fadeIn(function() { if ($.browser.msie) this.style.removeAttribute('filter'); })
	};

$doEntry = function() {
	
	var n = 0;
	
	$(".child").each(function() { n++; });
	
	if( n  > 2 ) {
		$("div#copy_full").height(300);
		$("div#copy_full").animate({ height: (n * 137)}, (n - 1) * 500);
		};
		
	for (i=0; i<=n; i++) { setTimeout('$doFade()', 500*i); };
	
	};

$doEntry();
	
});