$(document).ready(function() {


 // hides the link descriptions as soon as the DOM is ready

 // (a little sooner than page load)

	$('.link-description').hide();

 
// accordion behavior
 
	$('#links li a.link-title').click(
	
		function() {
		
		var checkElement = $(this).next();
		
		if((checkElement.is('p')) && (checkElement.is(':visible'))) {
		
		return false;

		}
		
	if((checkElement.is('p')) && (!checkElement.is(':visible'))) {
	
	$('#links p:visible').slideUp('fast');
	
		checkElement.slideDown('fast');
		
		return false;
	
		}
	
		}
	
		);
	
$("a#ibc-map").click(function(){ $("div#links").find("p#ibc-info:hidden").slideDown("fast"); });

 });