$(document).ready(function () {
    $('div.menu_class').hover(function () {
	$('ul.the_menu').css('filter', 'alpha(opacity=85)');									
    $('ul.the_menu').fadeIn('def');
	}, function() {
		$('ul.the_menu').fadeOut('fast');
    });
});
