// JavaScript Document

<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function openWin( windowURL, windowName, windowFeatures )
{return window.open( windowURL, windowName, windowFeatures ) ; } 



// blender nur erstellen wenn elemente in HTML vorhanden sind

  // Bilder fuer kleine Box links...
  var imagesBox = [
  	"../dorf_tirol/images/2a-ferienwohnung-dorf-tirol-preise.jpg"
  ];
  // ...Bilder fuer grosse Box rechts daneben
  var imagesBlender2 = [
    "../dorf_tirol/images/2-ferienwohnung-dorf-tirol-preise-1.jpg",
	"../dorf_tirol/images/2-ferienwohnung-dorf-tirol-preise-2.jpg",
	"../dorf_tirol/images/2-ferienwohnung-dorf-tirol-preise-3.jpg",
	"../dorf_tirol/images/2-ferienwohnung-dorf-tirol-preise-4.jpg",
	"../dorf_tirol/images/2-ferienwohnung-dorf-tirol-preise-5.jpg",
	"../dorf_tirol/images/2-ferienwohnung-dorf-tirol-preise-6.jpg",
	"../dorf_tirol/images/2-ferienwohnung-dorf-tirol-preise-7.jpg",
	"../dorf_tirol/images/2-ferienwohnung-dorf-tirol-preise-8.jpg",
	"../dorf_tirol/images/2-ferienwohnung-dorf-tirol-preise-9.jpg",
	"../dorf_tirol/images/2-ferienwohnung-dorf-tirol-preise-10.jpg",
	"../dorf_tirol/images/2-ferienwohnung-dorf-tirol-preise-11.jpg"
  ];

  Event.observe(window, "load", function() {
    if ($('box'))
    {
      // new Blender("box", imagesBox);
    }
    if ($('blender2'))
    {
      new Blender("blender2", imagesBlender2, {
        fadeDuration: 1,
        displayDuration: 2
      });
    }
  });

//-->
