
$(document).ready(function() {

    $('#products a[level="0"]').hover(
            function () {
            	$(this).next('.sub-menu').show(); 
            },

            function () {
            	$(this).next('.sub-menu').hide();
            }
      );

    $('#products a[level="1"]').hover(
            function () {
            	$(this).next('.sub-menuInner').show(); 
            },

            function () {
            	$(this).next('.sub-menuInner').hide();
            }
      );

    $('.sub-menu').hover(
            function () {
            	$(this).show(); 
            },

            function () {
            	$(this).hide();
            }
      );

    $('.sub-menuInner').hover(
            function () {
            	$(this).show(); 
            },

            function () {
            	$(this).hide();
            }
      );

	

});
