$(document).ready(function() {
$('#menu ul li ul').each(function() {
    $(this).parent().addClass('parent');
});

$('#highlights ul li a').hover(
    function() {
        var id = $(this).parent().attr('id');
        $('#'+id+'_slide').css({ display: 'block', left: '740px' }).animate({ left: '0px', duration: 500 });
    },
    function() {
        var id = $(this).parent().attr('id');
        $('#'+id+'_slide').hide();
    }
);        
});

Cufon.replace('h2');