$(document).ready(function() {
  Cufon.replace('h1, h2, .blocktitle');
  if($('#videoblock .videos').size() > 0) {
    $('#videoblock .videos').pngFix();
  }
  $('#menu > ul > li').hover(function() {
    $('.submenu', $(this)).show()
    $(this).addClass('over');
  }, function() {
    $('.submenu', $(this)).hide()
    $(this).removeClass('over');
  });
})
