/*!
 * Copyright 2010, Simone Volpini
 * Dual licensed under the MIT or GPL Version 2 licenses.
 */
function menu() {
    $("#Submenu li a").click( function() {
       if ($(this).attr("href") == "#") {

           $("#Submenu ul ul").hide("slow");
           $(this).next("ul").show("slow");

           return false;
       }
       return true;
   });
}
