function posMenu()
{
  return;
  //var view = window.innerHeight;
  var view = (typeof window.innerHeight != 'undefined' ? window.innerHeight : document.body.offsetHeight);
  var promo = $('#promo').height();
  var margin = view - promo - 200;
  
  //alert(view + "-" + promo + "=" + margin);
  
  $('#promo').css('padding-bottom', margin + 'px');
}

function debugPosMenu()
{
  var view = (typeof window.innerHeight != 'undefined' ? window.innerHeight : document.body.offsetHeight);
  var promo = $('#promo').height();
  var margin = view - promo - 200;
  
  alert(view + "-" + promo + "=" + margin);
  $('#promo').css('padding-bottom', margin + 'px');
}

function switchImage(anId)
{
  $('#promo img').attr('src', '/fileadmin/startpage_new/images/mask/' + anId + '.png');
}

function timedReset()
{
  //setTimeout("switchImage(1)", 500);
  switchImage('basic');
}

$(function() {
  $('#adminlinks').bind('click', function(){ window.location.href='/typo3'; $(this).css('cusor', 'pointer'); });
  $('#first').bind("mouseover", function() { switchImage(1); $(this).children().css('color', '#FFF'); $(this).children().filter('h1').css('background', 'url(/fileadmin/startpage_new/images/icon_active.png) no-repeat center left'); });
  $('#second').bind("mouseover", function() { switchImage(5); $(this).children().css('color', '#FFF'); $(this).children().filter('h1').css('background', 'url(/fileadmin/startpage_new/images/icon_bad.png) no-repeat center left'); });
  $('#third').bind("mouseover", function() { switchImage(6); $(this).children().css('color', '#FFF'); $(this).children().filter('h1').css('background', 'url(/fileadmin/startpage_new/images/icon_sauna.png) no-repeat center left'); });
  $('#fourth').bind("mouseover", function() { $(this).children().css('color', '#FFF'); $(this).children().filter('h1').css('background', 'url(/fileadmin/startpage_new/images/icon_webshop.png) no-repeat center left'); });
  $('.footer-box').bind("mouseout", function() { switchImage('basic'); $(this).children().css('color', '#808080'); $(this).children().filter('h1').css('background', 'url(/fileadmin/startpage_new/images/icon.png) no-repeat center left'); });
  $(window).bind("resize", (function(){ posMenu(); }));
  posMenu();
});
