function finish() {
	var cHeight = (pageHeight/3);
	var cWidth = (pageWidth/2);
	var y = 320;
	var s = 6000;
	var d = 20;
	for (var i = 100; i<=106; i++) {
		var star = $('star'+i); 
		star.style.zIndex = 100;
		star.style.top = cHeight+"px";
		star.style.left = cWidth+"px";
		$('si'+i).setOpacity(1);
	}
	new Effect.Parallel([
			new Effect.Move('star100', { sync: true, x: (cWidth-245), y: y, mode: 'absolute' }),
			new Effect.Scale('si100', s, {scaleMode: {originalWidth:1.21, originalHeight:1.23}, duration: d}),
			new Effect.Move('star101', { sync: true, x: (cWidth-175), y: y, mode: 'absolute' }),
			new Effect.Scale('si101', s, {scaleMode: {originalWidth:1.38, originalHeight:1.14}, duration: d}),
			new Effect.Move('star102', { sync: true, x: (cWidth-100), y: y, mode: 'absolute' }),
			new Effect.Scale('si102', s, {scaleMode: {originalWidth:1.23, originalHeight:1.12}, duration: d}),
			new Effect.Move('star103', { sync: true, x: (cWidth-25), y: y, mode: 'absolute' }),
			new Effect.Scale('si103', s, {scaleMode: {originalWidth:1.00, originalHeight:1.13}, duration: d}),
			new Effect.Move('star104', { sync: true, x: (cWidth+35), y: y, mode: 'absolute' }),
			new Effect.Scale('si104', s, {scaleMode: {originalWidth:1.30, originalHeight:1.14}, duration: d}),
			new Effect.Move('star105', { sync: true, x: (cWidth+107), y: y, mode: 'absolute' }),
			new Effect.Scale('si105', s, {scaleMode: {originalWidth:1.21, originalHeight:1.06}, duration: d}),
			new Effect.Move('star106', { sync: true, x: (cWidth+180), y: y, mode: 'absolute' }),
			new Effect.Scale('si106', s, {scaleMode: {originalWidth:1.30, originalHeight:1.05}, duration: d})
		], {
	    duration: 2
	});
}
 
function startStars() {
	for (var i=1; i <= 10; i++) {
		addStar(i, '/image/star/1mult.gif');
		setTimeout("shineStar("+i+")", (Math.random()*1500))
	}

	addStar('100', '/image/hapkido-intro/hapkido-intro-x.gif');
	addStar('101', '/image/hapkido-intro/hapkido-intro-a.gif');
	addStar('102', '/image/hapkido-intro/hapkido-intro-p.gif');
	addStar('103', '/image/hapkido-intro/hapkido-intro-k.gif');
	addStar('104', '/image/hapkido-intro/hapkido-intro-i.gif');
	addStar('105', '/image/hapkido-intro/hapkido-intro-d.gif');
	addStar('106', '/image/hapkido-intro/hapkido-intro-o.gif');
	
	addStar('mndl', '/image/Mandala.png');
	addStar('ier', '/image/koreanSml.gif');
	showMandala();
}

var shining = 0;
var pageWidth = pageWidth();
var pageHeight = pageHeight();
$('main').style.background = '#fff';
startStars();
