/* Copyright 2010 by Method Engine, LLC  */

function initMenu(id) {	
  $(id+' ul').hide();
  $(id+' ul:first').show();
  $(id+' li a').click(
    function() {
      var checkElement = $(this).next();

	  // turn all arrow back to default state
	  $('ul.menu li a').css('background-image', 'url(imgs/accordianArrow.gif)'); 
	  // now turn the clicked item to open state
	  $(this).css('background-image', 'url(imgs/accordianArrow-ro.gif)');
	 
      if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
        return false;
        }
      if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
        $(id+' ul:visible').slideUp('normal');
        checkElement.slideDown('normal');
        return false;
        }
      }
    );
  
  
  
  
}

