// JavaScript Document

var x;

function action(){
	x = 0;
	scrolling = setInterval("playme()", 5);
	expanding = setInterval("showme()", 5);
	box = document.getElementById('wrapper');
	box.style.display = "block";
}

function playme(){
	x++;
	this_object = document.getElementById('body');
	this_object.style.backgroundPosition = "0px "+(x*85)+"px";
}
function showme(){
	this_object = document.getElementById('wrapper');
	if(x > 60){
		clearInterval(scrolling);
		clearInterval(expanding);
	}else{
		this_object.style.top = ((68-x)*10)+"px";
	}	
}