$(document).ready(function() {
    $('.mainMenu ul li').hover(
        function() {$('ul', this).show();},
        function() {$('ul', this).hide();}
);
});


