function productMenu() {
  $('#subnavmenu ul').hide().find("a.navOn").parents('ul').show();
  
  //show first subcats
  $('.subsubnavmenu').show();
						
  $('#subnavmenu a').click(
    function() {
      	
		//change class to change + / -
		
		
		var checkElement = $(this).next();
      	
		
		if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
        	$(this).parent().attr('class', 'p7plusmark');
			checkElement.slideToggle('normal');
			return false;
        }
		
      	if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
        	//slide up all other UL and add plus marks
			$(this).parent().parent().find('ul:visible').slideUp('normal');
			$(this).parent().parent().find('ul:visible').parent().attr('class', 'p7plusmark')
			
			$(this).parent().attr('class', 'p7minusmark');
			
        	//show current UL
			checkElement.slideToggle('normal');
        	return false;
        }
     }
   );
 }
$(document).ready(function() { productMenu(); });
