// k-fr.net 標準JS
/*
$(function(){
	$('h1').css('top', '100px').fadeIn(1000, 
		function(){
			$(this).animate({top:'0px'}, 1000, 'swing', 
				function(){
					$('#copyright').fadeIn('slow', 
						function(){
							$('#menu').css('border-top-color', '#337733').css('border-left-color', '#337733').css('border-right-color', '#337733').
								animate({height:100}, 'normal', 'swing', 
									function(){
										$(this).css('border-bottom-color', '#337733').animate({height:100}, 0, 'swing', 
											function(){
												$('#main').animate({width:800});
											}
										);
									}
								);
						}
					);
				}
			);
		}
	);
});
*/
