var intHeight;
var intBottomFrame = 0;//80;       // Zet hier de hoogte van het onderste frame
var intTopFrame = 125;       // Zet hier de hoogte van het bovenste frame



var numScrollPages = 6;        //Set the number of pages (layers) here. Add and remove the pages in the body too. The first layer is called dynPage0, the second is dynPage1, and so on.
var transitionOut = 0;         //The 'out' effect... 0= no effect, 1= fade
var transitionIn = 0;          //The 'in' effect... 0= no effect, 1= fade, 2= slide
var slideAcceleration = 0.2;   //If you use the slide animation, set this somewhere between 0 and 1.
var transitionOnload = 0;      //Use the 'in' transition when the page first loads? If you want the transition fx only when the links are clicked, you can set it to 0.

// NOTE: if you change the position of divScroller1 from absolute to relative, you can put the scroller in a table.
// HOWEVER it will no longer work in netscape 4. If you wish to support netscape 4, you have to use absolute positioning.

// Please note that there are no effects available in ns4 and ie4, or explorers on the Mac!

/*** There should be no need to change anything beyond this. ***/ 

// A unit of measure that will be added when setting the position of a layer.

var link;

function getQuery()
{
  var queryString = location.search;
  if (queryString.length>0)
  {
    var data = queryString.slice(1,queryString.length);
    queryArray = data.split("=");
    link = queryArray[1];
  }
  else
  {
    link="-1";
  }  
}

