// JavaScript Document

<script language="JavaScript">

function preloader() 
{
	// counter     
	 var i = 0;
     
	 // create object   
	 imageObj = new Image();
     
	 // set image list     
	 images = new Array();     
	 images[0]="home_01_01.jpg"     
	 images[1]="home_02.jpg"     
	 images[2]="home_03.jpg"     
	 images[3]="home_04.jpg"
	 images[4]="home_05.jpg"
	 images[5]="home_06.jpg"
	 images[6]="home_07.jpg"
	 images[7]="home_08.jpg"
	 images[8]="home_09.jpg"
	 images[9]="home_10.jpg"
	 images[10]="home_11.jpg"
	 images[11]="home_12.jpg"
	 images[12]="home_13.jpg"
	 images[13]="home_14.jpg"
	 images[14]="home_15.jpg"
	 images[15]="home_16.jpg"
	 images[16]="home_17.jpg"
	 images[17]="roll_03.jpg"
	 images[18]="roll_07.jpg"
	 images[19]="roll_09_09.jpg"
	 images[20]="roll_10.jpg"
	 images[21]="roll_11.jpg"
	 images[22]="roll_13.jpg"
	 // start preloading    
	 for(i=0; i<=22; i++)      
	 {          
	 imageObj.src=images[i];     
	 }
} 
</script>