$(function() {
  $('#homebanner').cycle();
  $('ul.level1 li', '#topnav').mouseenter(function(){
    $('#'+$(this).data('sub')).show();
  }).mouseleave(function(){
    $('#'+$(this).data('sub')).hide();
  });
});
