$(document).ready(function(){
        //alert("hello");
        $('.mainmenu ul li').hover(
            function() {
                // $(this).find('ul:first').stop(true, true);
                $(this).find('ul').slideDown();
            },
            function() {
                $(this).find('ul').slideUp();
            });
        // $('.topmenu li:has(ul)').find('a:first').append('&raquo;');
    });