$(document).ready(function () {

  $('#headline').cycle({ 
    fx:     'scrollLeft',
    speed:  300, 
    cleartype: true,
    timeout: 7000, 
    cleartypeNoBg: true 
  });

  $("#nav ul li").hover(function () {
    $(this).children("ul").slideDown();
  },
  function(){
    //$(this).children("ul").slideUp();
  });
  
  $("#nav ul li ul").hover(function () {
  
  },
  function(){
    $(this).slideUp();
  });

});

