<!--//

jQuery.noConflict();
//For the main menu - compacting items
jQuery(document).ready(function(){
        jQuery(".allproducts-list > li > h2").next().hide();
        jQuery(".allproducts-list > li > h2").click(function(){
            jQuery(this).addClass('open');
            jQuery(this).next().slideDown("fast");
			jQuery(".allproducts-list > li > h2:not(.open)").next().slideUp("fast");
			jQuery(".open:not(this)").removeClass('open');
            return false;
        });
		jQuery(".allproducts-list > li > img").click(function(){
            jQuery(this).addClass('open');
            jQuery(this).next().next().slideDown("fast");
			jQuery(".allproducts-list > li > img:not(.open)").next().next().slideUp("fast");
			jQuery(".open:not(this)").removeClass('open');
            return false;
        });
    });


//-->
