$(function() {
        $('#topmenu li').hover(
        function() {
            $(this).attr('style', 'z-index:10');
            $(this).find('div').parents('li').find('a:first-child').addClass('main');
            $(this).find('div').show();
        },
        function() {
            $(this).find('div').parents('li').find('a:first-child').removeClass('main');
            $(this).find('div').hide();
            $(this).attr('style', '');

        }
    );
});
