function renderBlades(showMultiple, identifier) {
  $('a').focus(function() {
	this.blur(); // This hides strange link outlines in firefox
  });
  if (!showMultiple) {
	$('#' + identifier + ' ul').hide();
	$('#' + identifier + ' #openBlade').show();
	$('#' + identifier + ' li a').click(
	function() {
		var checkElement = $(this).next();
		if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
			return false;
		}
		if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
			$('#' + identifier + ' ul:visible').slideUp('normal');
			checkElement.slideDown('normal');
			return false;
		}		
	}
    );
  } else {
    $('#' + identifier + ' ul').hide();
	$('#' + identifier + ' #openBlade').show();
    $('#' + identifier + ' li a').click(
    function() {
        $(this).next().slideToggle('normal');		
    }
    );
  }
}