function MoveToNext()
{
	var body = document.getElementsByTagName('body')[0];
	if (body.className == 'part1')
	{
		window.location.href = 'Intro2.html';
	}
	else if (body.className == 'part2')
	{
		window.location.href = 'Intro3.html';
	}
}

AddEvent(window, 'load', function(evt)
{
	var body = document.getElementsByTagName('body')[0];
	if (body.className == 'part1' || body.className == 'part2')
	{
		body.onclick = MoveToNext;
		body.onkeypress = MoveToNext;
		if (body.className == 'part1')
		{
			setTimeout(MoveToNext, 10000);
		}
	}
});
