function productMenu() {
  $('#subnavmenu ul').hide().find("a.navOn").parents('ul').show();
   $('#subnavmenu li a.navOn').next().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 true;
        }
		
      	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 true;
        }
     }
   );
 }
$(document).ready(function() { productMenu(); });
