$(document).ready(function(){

  /* Add the beautifull effect to the primary menu */
  
  if ($('#menu a').length > 0){
    $('#menu a').ahover({toggleEffect: 'height',  moveSpeed: 250, toggleSpeed: 250});
  }
  /* use try-catch or IE does not like us */
  try {
  $("a#videolink").fancybox({
    'titleShow'     : true,
    'width'       : '550px',
    'height'      : '550px',
    'autoScale'       : false
  });
  //$("a#videolink").fancybox.resize();
  }
  catch(e){
    
  }

});