function select_text(input_id){
			
			// Only select the text if it hasn't been clicked before
			if(!input_id.clickedBefore||input_id.clickedBefore==''){
				input_id.select();
				input_id.clickedBefore=true;
			}
			
		}
		
		
		
		
		/*
		* Rollover controllers for the intro text
		*/
		function rolloverText(num){
			this.document.getElementById('rollover'+num).className="rollover_hover"+num;
			/*
			if(num==4){
				this.document.getElementById('rollover5').className="rollover_hover5";
			}
			else if(num==5){
				this.document.getElementById('rollover4').className="rollover_hover4";
			}
			*/
		}
		function rolloutText(num){
			this.document.getElementById('rollover'+num).className="rollover"+num;
			/*
			if(num==4){
				this.document.getElementById('rollover5').className="rollover5";
			}
			else if(num==5){
				this.document.getElementById('rollover4').className="rollover4";
			}
			*/
		}
		
		/*
		* Preload images used for the intro text
		*/
		function preloadImages(){
			var dir=server+"/images/home/introtext";
			pic0= new Image(100,25); 
			pic0.src=dir+"/arika_intro_text_rollover_hover1.gif";
			pic1= new Image(100,25); 
			pic1.src=dir+"/arika_intro_text_rollover_hover2.gif";
			pic2= new Image(100,25); 
			pic2.src=dir+"/arika_intro_text_rollover_hover3.gif";
			pic3= new Image(100,25); 
			pic3.src=dir+"/arika_intro_text_rollover_hover4.gif";
			//alert("pic0.src="+pic0.src)
		}
							
		// JD Gallery
		function startGallery() {
			var homeGallery = new gallery($('homeGallery'), {
				timed: true,
				defaultTransition: "crossfade"
			});
		}
		
		