// JavaScript Document<script>

images = new Array(
'url(images/bg/District9_bg.jpg) no-repeat 50% 0 #000000',
'url(images/bg/PennyRose_bg.jpg) no-repeat 50% 0 #d2f4fd',
'url(images/bg/Landy_bg.jpg) no-repeat 50% 0 #050402',
'url(images/bg/miss_bg.jpg) no-repeat 50% 0 #fefbf6',
'url(images/bg/fururi_bg.jpg) no-repeat 50% 0 #E9E9E1',
'url(images/bg/lawabidingcitizen_bg.jpg) no-repeat 50% 0 #0F252A',
'url(images/bg/summer_bg.jpg) no-repeat 50% 0 #ffffff',
'url(images/bg/TheFourthKind_bg.jpg) no-repeat 50% 0 #070705',
'url(images/bg/Transsiberian_bg.jpg) no-repeat 50% 0 #ffffff',
'url(images/bg/storm_bg.jpg) no-repeat 50% 0 #ffffff',
'url(images/bg/OtherMan_bg.jpg) no-repeat 50% 0 #000000'
)
index = Math.floor(Math.random() * images.length);

function changebg(){
	if (document.body){
		document.body.style.background = images[index];
	}
}
