var flag = false;
jQuery(document).ready(function() {
	
	$('#az_main_menu_products').mouseover(function (){
		jQuery("#az_category_menu_wrapper_left").css({display: 'block'});
		jQuery("#az_category_menu_wrapper_left").css({width: '100%'});
		flag = true;
	});

	$('#az_main_menu_products').mouseout(function (){
			setTimeout('hide()',500);
	});
	jQuery('#az_category_menu_left > li').each(function (i) {
		$(this).mouseover(function (){
			jQuery("#az_category_menu_wrapper_left").css({display: 'block'});
			jQuery("#az_category_menu_wrapper_left").css({width: '100%'});
			flag = true;
		});
		$(this).mouseout(function (){
			flag = false;
			setTimeout('hide()',500);
		});
	});
});

function hide() {
	if(flag == false)
		jQuery("#az_category_menu_wrapper_left").css({display: "none"});
}
