function raise_menu(){
	if (do_not_hide==0){
		$(".new_tabs").find(".listing").hide(); 
	}
}
$(document).ready(
	function () {
		$(".new_tabs").hover(
			function () {
				do_not_hide=1;
				$(".new_tabs").find(".listing").hide(); 
				$(this).find(".listing").show(); 
			}, 
			function () {
				do_not_hide=0;
			}
		);
		$(".new_tabs .listing").hover(
			function () {
			}, 
			function () {
				setTimeout("raise_menu()",500);
			}
		);
	}
);

