$(document).ready( function() {
  
  function mostra( id ) {
      
      /*
      $(".menu_submenu").slideUp("slow");
      $("#" + id).slideDown("slow");
      */
      
      $(".menu_submenu").hide();
      $("#" + id).show();
  
  }
  
  function nascondi( id ) {
  
      //$("#" + id).slideUp("slow");
      $("#" + id).hide();
  
  }

  $("#menu .submenu").hover( function() {
  
      id = $(this).attr('rel');
      
      $("#menu .submenu").removeClass("selected");
      $(this).addClass("selected");                 
      
      if ( $("#" + id).is(":hidden") ) $(this).doTimeout( 'hover', 50, mostra, $(this).attr('rel') );
      
      $("#" + id).mouseout( function() {
      
          $(this).doTimeout( 'hover', 50, nascondi, $(this).attr('rel') );
      
      });
			
  }, function() {
  
      $(this).doTimeout( 'hover', 50, nascondi, $(this).attr('rel') );
  
  });
  
  $('#flash-news-content').cycle({
	    fx: 'scrollRight',
	    timeout: 4500
  });
  
  /*
  $('#news-content').cycle({
	    fx: 'scrollUp',
	    timeout: 4500
  });
  */

});

