function initMainAnimation() {

  $('#mainmenu a').click( runMainAnimation );
  $('#header a').click( pauseBigVideo );
  $('#footermenu a').click( pauseBigVideo );

  $.getScript('/fileadmin/templates/scripts/jquery.getUrlParam.js');

  $(window).bind('resize', resizeMainAnimation);
  
}

function pauseBigVideo() {
  if(window.document && window.document.bigVideo)
    window.document.bigVideo.pauseVideo();
}

function runMainAnimation() {


  var url = $(this).attr('href');

  var contentBox = $('body').get(0);
  var height = contentBox.offsetHeight;
   
  $('#teaser').css('visibility', 'hidden');

  if(window.document && window.document.bigVideo)
    window.document.bigVideo.pauseVideo();
  
  $('#teaser').css('visibility', 'hidden');

  if($(document).getUrlParam('claim') != 1)
      $('#claim').fadeOut();

  $('#mainmenu').css('padding-top', '25px');
  $('#content-container').animate(
    //{ height: (height + 8) + 'px' }, 
    { height: (height) + 'px' }, 
    { 
      duration: 1000, 
      easing: 'linear', 
      complete: function () {
        window.location = url; 
      }
    });

  return false;
}

function resizeMainAnimation() {
  if(initSWF) 
    setTimeout('initSWF();', 100);
  
}

$(document).ready(initMainAnimation);

