function accordian() {
	$('ul.secondNav ul').hide();
	$.each($('ul.secondNav'), function(){
		$('#' + this.id + '.secondNav ul.secondNavLocation').show();
	});
	$('ul.secondNav li a').click(
		function() {
			var checkElement = $(this).next();
			var parent = this.parentNode.parentNode.id;			
			if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
				$('#' + parent + ' ul:visible').slideUp('normal');
				return false;
			}
			if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
				$('#' + parent + ' ul:visible').slideUp('normal');
				checkElement.slideDown('normal');
				return false;
			}
		}
	);
}
$(document).ready(function() {accordian();});