jQuery.noConflict();

var mapActive = false;

jQuery(document).ready(function(){
  jQuery('#switcher').click(function(){ 
    if (mapActive) {
      jQuery('#switcher').html('Toon kaart');
      jQuery('#container_inner').animate({
        'top': '50px',
        'bottom': '20px'
      }, 1200);
      mapActive = false;
    } else {
      jQuery('#switcher').html('Toon website');
      jQuery('#container_inner').animate({
        'top': jQuery(window).height()-26+'px',
        'bottom': 20-jQuery(window).height()+'px'
      }, 1200);
      mapActive = true;
    }
  });
});

/*iFrame hoogte correctie ivm dynamisch content hoogte icm IE iFrame height percentage bug.*/
/* 100px = 50 top marge + 20 bottom marge + 26 menu hoogte + 2 x 2 border overlay*/
 
/*Resize iFrame op iframe load event*/
jQuery('#website').load(function loadIframe() {
  jQuery('#website').css('height',jQuery(window).height() - 101 +'px');
});

/*Resize iFrame op window resize event*/
jQuery(window).resize(function resizeIframe() {
  jQuery('#website').css('height',jQuery(window).height() - 101 +'px');
  if (mapActive) {
    jQuery('#container_inner').css('top',jQuery(window).height()-101+'px');
    jQuery('#container_inner').css('bottom',20-jQuery(window).height()+'px');
  }
});



