var pic_width=900;
var pic_height=250;

/* define image urls */

if (document.images)
 {
    pic1= new Image(pic_width,pic_height);
     pic1.src="http://www.golfinaustralia.com/resorts/queensland/gold_coast/coolangatta/reflection_tower_two/images/reflection_tower_two_golf_900.jpg"; 
     pic2= new Image(pic_width,pic_height);
     pic2.src="http://www.golfinaustralia.com/resorts/queensland/gold_coast/coolangatta/reflection_tower_two/images/reflection_tower_two_kirra_cabarita_beach_900.jpg";
     pic3= new Image(pic_width,pic_height);
     pic3.src="http://www.golfinaustralia.com/resorts/queensland/gold_coast/coolangatta/reflection_tower_two/images/reflecton_tower_two_rainbow_beach_900.jpg"; 
     pic4= new Image(pic_width,pic_height);
     pic4.src="http://www.golfinaustralia.com/resorts/queensland/gold_coast/coolangatta/reflection_tower_two/images/reflection_tower_two_bath_marble_900.jpg"; 
     pic5= new Image(pic_width,pic_height);
     pic5.src="http://www.golfinaustralia.com/resort/queensland/coolangatta/reflection_tower_two/images/reflection_tower_two_apartment_900.jpg";
     pic6= new Image(pic_width,pic_height);
     pic6.src="http://www.golfinaustralia.com/resort/queensland/coolangatta/reflection_tower_two/reflection_tower_two_greenmount_beach_900.jpg";
     pic7= new Image(pic_width,pic_height);
     pic7.src="http://www.golfinaustralia.com/resort/queensland/coolangatta/reflection_tower_two/images/reflection_tower_two_gym_900.jpg";
     pic8= new Image(pic_width,pic_height);
     pic8.src="http://www.golfinaustralia.com/resorts/queensland/gold_coast/coolangatta/reflection_tower_two/images/reflection_tower_two_gym_900.jpg";
     pic9= new Image(pic_width,pic_height);
     pic9.src="http://www.golfinaustralia.com/resorts/queensland/gold_coast/coolangatta/reflection_tower_two/images/reflection_tower_two_kirra_cabarita_beach_900.jpg";
	 pic10= new Image(pic_width,pic_height);
     pic10.src="http://www.golfinaustralia.com/resorts/queensland/gold_coast/coolangatta/reflection_tower_two/images/reflection_tower_two_spa_wellness_900.jpg";
	 pic11= new Image(pic_width,pic_height);
     pic11.src="http://www.golfinaustralia.com/resorts/queensland/gold_coast/coolangatta/reflection_tower_two/images/reflection_tower_two_golf_900.jpg";
	 pic12= new Image(pic_width,pic_height);
     pic12.src="http://www.golfinaustralia.com/resorts/queensland/gold_coast/coolangatta/reflection_tower_two/images/reflection_tower_two_bath_marble_900.jpg";    
 }    

/* define text for image captions  */

var destext= new Array(12)
    destext[0]="Reflection Tower Two, Coolangatta";
    destext[1]="Reflection Tower Two, Coolangatta";
    destext[2]="Reflection Tower Two, Coolangatta";
	destext[3]="Reflection Tower Two, Coolangatta";
    destext[4]="Reflection Tower Two, Coolangatta";
	destext[5]="Reflection Tower Two, Coolangatta";
	destext[6]="Reflection Tower Two, Coolangatta";
	destext[7]="Reflection Tower Two, Coolangatta";
	destext[8]="Reflection Tower Two, Coolangatta";
	destext[9]="Reflection Tower Two, Coolangatta";
	destext[10]="Reflection Tower Two, Coolangatta";
	destext[11]="Reflection Tower Two, Coolangatta";

 
var pics= new Array(12) 
   pics[0]=pic1.src;
   pics[1]=pic2.src;
   pics[2]=pic3.src;
   pics[3]=pic4.src;
   pics[4]=pic5.src;
   pics[5]=pic6.src;
   pics[6]=pic7.src;
   pics[7]=pic8.src;
   pics[8]=pic9.src;
   pics[9]=pic10.src;
   pics[10]=pic11.src;
   pics[11]=pic12.src;


var numpics=12;
var thenum=0;
imgName="img1";

function change_it()
 {
   if (document.images)
    {
      document.write("<IMG SRC='"+pics[thenum]+"' border='0' width='"+pic_width+"' height='"+pic_height+"' name='img1'>\n");
      
      setTimeout('change_it2()',5000);  
   }
}

function change_it2()
 {
         var x=0;
         thenum+=1;

           if (thenum>numpics-1)
             thenum=0;

           document[imgName].src=pics[thenum];
           
           x+=1;
           setTimeout('change_it2()',4000);
          
 }

