/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

 /*jQuery().ready(function(){
                // applying the settings
                jQuery('div#categories ul').Accordion({
                    active: '',
                    header: 'div#categories ul li',
                    alwaysOpen: false,
                    animated: true,
                    showSpeed: 400,
                    hideSpeed: 800
                });
});*/


/*
$(document).ready(function(){

    $("ul li ul").hide();
    $("ul li a ul").hover(

        function(){

            $(this).next().slideDown("slow");
            return true;
        },
        function(){
               $("ul li ul:visible").slideUp("slow");
        }

    );

});
*/