$(document).ready(function()
{
  $('div#menuHome div.container').live('mouseover', function()
  {
    var thisId = $(this).attr('id');
    var theHeight = '';

    switch (thisId)
    {
        case 'visie':
          theHeight = 120;
          break;

        case 'nieuws':
          theHeight = 280;
          break;

        case 'profielen':
          theHeight = 200;
          break;

        default:
          break;
      }

    if (! $(this).find('div.bottom').length == 0)
    {
      $(this).stop().animate({height: '400px', marginTop: '-80px'}, 150, 'swing');
      $(this).find('div.bottom').stop().animate({height: theHeight, marginTop: '85px'}, 150, 'swing');
    }
  })

  $('div#menuHome div.container').live('mouseout', function()
  {
    if (! $(this).find('div.bottom').length == 0)
    {
      $(this).stop().animate({height: '116px', marginTop: '0px'}, 'fast', 'swing');
      $(this).find('div.bottom').stop().animate({height: '10px', marginTop: '0px'}, 'fast', 'swing');
    }
  })

});
