var the_images=new Array();//The Image array used for the preload and the two Nav functions
		the_images[0]='images/ind_nav_on_01.gif';
		the_images[1]='images/ind_nav_on_02.gif';
		the_images[2]='images/ind_nav_on_03.gif';
		the_images[3]='images/ind_nav_on_04.gif';
		the_images[4]='images/ind_nav_on_05.gif';
		the_images[5]='images/ind_nav_on_06.gif';
		the_images[6]='images/ind_nav_on_07.gif';
		the_images[7]='images/ind_nav_on_08.gif';
		the_images[8]='images/main_nav_on_01.gif';
		the_images[9]='images/main_nav_on_02.gif';
		the_images[10]='images/main_nav_on_03.gif';
		the_images[11]='images/main_nav_on_04.gif';
		the_images[12]='images/main_nav_on_05.gif';
		the_images[13]='images/main_nav_on_06.gif';
		the_images[14]='images/main_nav_on_07.gif';
		the_images[15]='images/main_nav_on_08.gif';
	
		
		
		
	var the_imagesoff=new Array();//The Image array used for the preload and the two Nav functions
		the_imagesoff[0]='images/ind_nav_01.gif';
		the_imagesoff[1]='images/ind_nav_02.gif';
		the_imagesoff[2]='images/ind_nav_03.gif';
		the_imagesoff[3]='images/ind_nav_04.gif';
		the_imagesoff[4]='images/ind_nav_05.gif';
		the_imagesoff[5]='images/ind_nav_06.gif';
		the_imagesoff[6]='images/ind_nav_07.gif';
		the_imagesoff[7]='images/ind_nav_08.gif';
		the_imagesoff[8]='images/nav_01.gif';
		the_imagesoff[9]='images/nav_02.gif';
		the_imagesoff[10]='images/nav_03.gif';
		the_imagesoff[11]='images/nav_04.gif';
		the_imagesoff[12]='images/nav_05.gif';
		the_imagesoff[13]='images/nav_06.gif';
		the_imagesoff[14]='images/nav_07.gif';
		the_imagesoff[15]='images/nav_08.gif';
		
	
		
	
	the_nav=new Array();
			the_nav[0]='news';
			the_nav[1]='live';
			the_nav[2]='press';
			the_nav[3]='bio';
			the_nav[4]='av';
			the_nav[5]='photos';
			the_nav[6]='merchandise';
			the_nav[7]='links';		
			the_nav[8]='news1';		
			the_nav[9]='live1';		
			the_nav[10]='press1';		
			the_nav[11]='bio1';		
			the_nav[12]='av1';		
			the_nav[13]='photos1';		
			the_nav[14]='merchandise1';		
			the_nav[15]='links1';			
			
	
		
			
		

	var one=preloadImages(the_imagesoff);
	var two=preloadImages(the_images);




function preloadImages(the_images_array) {



        for(loop = 0; loop < the_images_array.length; loop++)

        {

                var an_image = new Image();
				
                an_image.src = the_images_array[loop];

        }
        

}




	
	
	
	function rollover(x){
	
		//alert(x);
	
		for(i=0;i<the_images.length;i++){
		
		//alert(x+'=='+the_nav[i]);
			if(x==the_nav[i] && the_page!=x){
			
			
				var z='document.'+x+'.src="'+the_images[i]+'"';
				//alert(z);
				eval(z);
			}
			
		
		
		}
	
	
	
	
	}


function rolloff(x){
	
		
	
		for(i=0;i<the_images.length;i++){
		
		
			if(x==the_nav[i] && the_page!=x){
			
			
				var z='document.'+x+'.src="'+the_imagesoff[i]+'"';
				//alert(z);
				eval(z);
			}
			
		
		
		}
	
	
	
	
	}