function changeblur(){

	document.getElementById("entire").style.backgroundImage = 'url(image/back-blur.jpg)';
	
}
function changeback(){

	document.getElementById("entire").style.backgroundImage ='url(image/back.jpg)';
	
	
}
function changeglow(){

	document.getElementById("entire").style.backgroundImage  = 'url(image/back-glow.jpg)';
	
}
function changespot(){

	document.getElementById("entire").style.backgroundImage = 'url(image/back-spotlight.jpg)';
	
}
function changelight(){

	document.getElementById("entire").style.backgroundImage  = 'url(image/back-light.jpg)';
	
}
function changemotion(){

	document.getElementById("entire").style.backgroundImage  = 'url(image/back-motion.jpg)';
	
}
function changeexp(){

	document.getElementById("entire").style.backgroundImage = 'url(image/back-exp.jpg)';
	
}
function main(){
self.resizeTo(window.screen.width*2,window.screen.height*2);
setTimeout("changeblur()",100);
setTimeout("changemotion()",250);
setTimeout("changeblur()",400);
setTimeout("changeback()",550);
}
function looper(){
setTimeout("changeglow()",1400);
setTimeout("changeback()",1500);
setTimeout("changeglow()",1600);
setTimeout("changeback()",1700);
setTimeout("changeglow()",1800);
setTimeout("changeback()",1900);
}
window.addEventListener("load", main, false);

window.addEventListener("load", looper, false);
