function smooth_show(){
  $("#welcome").css("left", "250px").css("display", "none");
  setTimeout( function() {
      $("#welcome").animate({left: "400px"}, {queue: false, duration: 500}).fadeIn(300);
      }, 200);
  $("ul.homeitems>li").css("display", "none");
  setTimeout( function() {
      $("ul.homeitems>li:first").fadeIn(300, function(){
	  $(this).next().fadeIn(300, arguments.callee);
	});
    }, 600);
}

$(document).ready(smooth_show);