
$(document).ready(function(){
	$('.openCat').bind('click', function(e){
        $(this).toggleClass('closeCat');
    });
    $('.openCat').toggle(
		function () {
      		$(this).parent().find('.prodListOuterWrapper').fadeIn('slow');	
      	},
		function () {
    	 	$(this).parent().find('.prodListOuterWrapper').fadeOut('slow');	
  		}
	);    
});


