window.onload = function () {

   /*New windows links*/
   var array = document.getElementsByTagName('a');
   for (i=0;i<array.length;i++) {
      if (array[i].className=='newWindowLink')
	 array[i].onclick=function (param) {
	    window.open(this.href);
	    return false;
	 }
   }

   /*Changing images in room section*/
   document.getElementById('change_01').onclick=function (param) {
      changeImage('../img/main/habitaciones.jpg');
   }
   document.getElementById('change_02').onclick=function (param) {
      changeImage('../img/condetepa_ampli.jpg');
   }
   document.getElementById('change_03').onclick=function (param) {
      changeImage('../img/napoleon_ampli.jpg');
   }
   document.getElementById('change_04').onclick=function (param) {
      changeImage('../img/pedromato_ampli.jpg');
   }
   document.getElementById('change_05').onclick=function (param) {
      changeImage('../img/manuelgullon_ampli.jpg');
   }
   document.getElementById('change_06').onclick=function (param) {
      changeImage('../img/lightbox/014.jpg');
   }
   document.getElementById('change_07').onclick=function (param) {
      changeImage('../img/lightbox/017.jpg');
   }
   document.getElementById('change_08').onclick=function (param) {
      changeImage('../img/caminosantiago_ampli.jpg');
   }
   document.getElementById('change_09').onclick=function (param) {
      changeImage('../img/conchaespina_ampli.jpg');
   }
   document.getElementById('change_10').onclick=function (param) {
      changeImage('../img/lightbox/020.jpg');
   }

   function changeImage(image) {
      document.getElementById('room_img').src=image;
      window.scroll(0,0);
   }


}
