/*
$(document).ready(function() {
    $("#cat_dropdown").hover(function () {
        if ($("#categories_dropdown").is(":hidden")) {
          $("#categories_dropdown").slideDown("fast");
        } else {
          $("#categories_dropdown").slideUp("fast");
        }
    });
    
    
    
});
*/


/*$(document).ready(function(){
	$(".cat_dropdown").mouseover(function() {
		
		$(this).parent().find(".categories_dropdown").removeClass('hide').addClass('show');
		
		$(this).parent().mouseleave(function() {
			$(this).parent().find(".categories_dropdown").removeClass('show').addClass('hide');
		});
	});
});*/


$(document).ready(function(){
	$('li.cat_dropdown').each(function() {
		$(this).mouseover(function() {
			$(this).find(".categories_dropdown").removeClass('hide').addClass('show');
			$(this).find(".home_image_icon").css('z-index', 99999);
			$(this).css('z-index', 99999);
			
		$(this).mouseleave(function() {
			$(this).find(".categories_dropdown").removeClass('show').addClass('hide');
			$(this).find(".home_image_icon").css('z-index', 0);
			$(this).css('z-index', 0);
			});
		});
	
	});

});

