

var slideShowSpeed = 10000
var crossFadeDuration = 5000
var Pic = new Array() 
var Desc = new Array() 
var Pic1 = new Array()
 
Pic[0] = '\images/anasayfa-otel-resim.jpg'
Pic[1] = '\images/anasayfa2.jpg'
Pic[2] = '\images/anasayfa3.jpg'
Pic[3] = '\images/anasayfa4.jpg'
Pic1[0] = '\images/anasayfa-otel-resim-1.jpg'
Pic1[1] = '\images/anasayfa2b.jpg'
Pic1[2] = '\images/anasayfa3b.jpg'
Pic1[3] = '\images/anasayfa4b.jpg'
Desc[0] = '<strong>Our Hotel</strong> is made up of 50 Hotel Rooms - Double / Twin Standard Rooms in four two or three storey blocks, 18  Deluxe Hotel Rooms , 5 Gold Family Rooms 2 twin/triple rooms with partition  door, 12 Silver Family Rooms  2 separate larger bedrooms with their own  air-conditioning, TV, mini-bar or fridge and a separate bathroom and 24 1  bed-roomed Apartments. These are all dotted around the grounds and gardens of  the hotel with easy access to the Pool, Bar, Restaurant and Aqua Slide pool.<br />We have had guests  from all over the world including the United Kingdom, Holland, Russia, Hungary,  Japan and Turkey. And each year sees new nationalities discovering the beauty  of our area.<br />hotel is only 45 minutes from DALAMAN  airport, and 7km from historic Fethiye, 5km from the famous Olu Deniz Beach. A  perfect place to make the most of this fascinating area.'
Desc[1] = '<strong>The location</strong> makes it an ideal base for the area, on the main road for the Dolmus(bus) service to the beach, village centre and Fethiye. It is still within walking distance from the centre of the resort, and yet undisturbed by the music from bars at night. It is on the plateau above the beach which ensures cool breezes all year long and a much more comfortable temperature especially in the evenings'
Desc[2] = '<strong>The hotel</strong> has been run by the TAHANCI family since 1988 and we have developed a very good relationship with our guests, The staff are always friendly, welcoming and willing to help in any way to make your stay as wonderful as possible.'
Desc[3] = 'We also have the advantage of many years experience of dealing with guests from England and many other European countries, and have an in-depth knowledge of the area we live in. We are there to help you enjoy your holiday the best way we can -whether that involves relaxing by the pool and in the bar, or, making the most of the activities and trips available in the area. Our staff generally speak very good English and there will always be someone there who can answer your queries - just ask at reception and they will find the person that can best help you whatever your situation.On this site we have included some information about the hotel, local area and activities available during your stay. We look forward to welcoming you to our hotel, and wish you a happy holiday in advance.'
var t
var j = 0
var p = Pic.length
var preLoad = new Array()
var preLoad1 = new Array()
for (i = 0; i < p; i++){
   preLoad[i] = new Image()
   preLoad1[i] = new Image()
   preLoad[i].src = Pic[i]
   preLoad1[i].src = Pic1[i]
}

function runSlideShow(){
	   if (document.all){
      document.images.SlideShow.style.filter="blendTrans(duration=2)"
      document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShow.filters.blendTrans.Apply() 
	  document.images.SlideShow1.style.filter="blendTrans(duration=2)"
      document.images.SlideShow1.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShow1.filters.blendTrans.Apply()      
   }
   document.images.SlideShow.src = preLoad[j].src
   document.images.SlideShow1.src = preLoad1[j].src
   document.all.pictDesc.innerHTML = Desc[j]
   if (document.all){
      document.images.SlideShow.filters.blendTrans.Play()
	  document.images.SlideShow1.filters.blendTrans.Play()
   }
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runSlideShow()', slideShowSpeed)
}
