$(document).ready(function(){
    $('#navigation li').mouseover(function(){
        $(this).children('.dropdown').show();
    }).mouseout(function(){
        $(this).children('.dropdown').hide();
    });
});

