
	var t1 = Array();
	t1[ 0 ] = 'COMING SOON';
	t1[ 1 ] = 'COMING SOON';
	t1[ 2 ] = 'COMING SOON';
	
	var t2 = Array();
	t2[ 0 ] = 'testimonials are<br />coming very soon.';
	t2[ 1 ] = 'testimonials are<br />coming very soon.';
	t2[ 2 ] = 'testimonials are<br />coming very soon.';
	
	var currenttestimonial = 1;
	var totaltestimonials = 3;
	
	function updatetestimonials( testimonialnumber ) {
	
		if( testimonialnumber > totaltestimonials ) {
		
			testimonialnumber = 1;
		
		}
		
		if( testimonialnumber < 1 ) {
		
			testimonialnumber = totaltestimonials;
		
		}
		
		currenttestimonial = testimonialnumber;
		
		document.getElementById('testimonial1').innerHTML = t1[ currenttestimonial - 1 ];
		document.getElementById('testimonial2').innerHTML = t2[ currenttestimonial - 1 ];
		
		// set all to off state
		for( var counter = 1; counter <= 3; counter ++ ) {
		
			document.getElementById( 'testimonialimg' + counter ).src = '/img/gui/gallerynav.gif';
		
		}
		
		// set highlighteed one to on state
		document.getElementById( 'testimonialimg' + currenttestimonial ).src = '/img/gui/gallerynavh.gif';
	
	
	}
	
	function tdpromoover( obj ) {
	
		obj.style.backgroundPosition = 'bottom';
		obj.style.color = '#FFFFFF';
	
	}
	
	function tdpromoout( obj ) {
	
		obj.style.backgroundPosition = 'top';
		obj.style.color = '#77787B';
	
	}
	
	function updatescrollericons( number ) {
	
		// set all to off state
		for( var counter = 1; counter <= 4; counter ++ ) {
		
			document.getElementById( 'gallerysliderimg' + counter ).src = '/img/gui/gallerynav.gif';
		
		}
		
		// set highlighteed one to on state
		document.getElementById( 'gallerysliderimg' + number ).src = '/img/gui/gallerynavh.gif';
	
	}
	
	function tover( obj ) {
	
		document.getElementById('testimonial1').style.color = '#FFFFFF';
		document.getElementById('testimonial2').style.color = '#FFFFFF';
		obj.style.backgroundImage = 'url(/img/gui/testimonialsgradient.gif)';
	
	}
	
	function tout( obj ) {
	
		document.getElementById('testimonial1').style.color = '#77787B';
		document.getElementById('testimonial2').style.color = '#77787B';
		obj.style.backgroundImage = 'none';
	
	}
	
	
