$(document).ready( function(){
    $("#menu ul li").hover (
        function(){ 
            $(this).find("ul").css('display', 'block'); 
        }, 
        function(){ 
            $(this).find("ul").css('display', 'none');
        }
    );
    if($('#hompage_images').length > 0){
        $('#hompage_images').innerfade({ 
            speed: 'slow', 
            timeout: 8000, 
            type: 'sequence', 
            containerheight: '237px' 
        }); 
    }
});

