/*
 *
 * intro page fedeOut script
 *
 * ver.1.0 - 2011.12.13
 *
 * It is a script for fading handling of introduction page.
 *
*/

$(window).load(function() {
	$("#intro").delay(1000).fadeOut(2000);
}); 

setTimeout( function() {
	location.href="sitetop.php";
}, 3000);

