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

$(function() {

        
        $('#navigation > li').hover(
                function() { $(this).addClass('hover').find('ul').show(); },
                function() { $(this).removeClass('hover').find('ul').hide(); }
        );

});