/* ****************
SOCIAL INK CUSTOM JQUERY
DO NOT REPRODUCE WITHOUT PERMISSION
********************************************** */

jQuery(document).ready(function($) {

	// code for toggle dropdown menus, used for podcasts
	$(".fp-description").hide();

	$(".expand_borough").click(function() {
		var expand_div = '#' + $(this).attr('id') + '_content'; 
		$('.expand_borough').removeClass('opened');
		$(this).addClass('opened');
		$('.borough').slideUp('fast');
		$(expand_div).slideToggle('medium');
		return false;
	});	


	
	$(".fp-themes").click(function() {
			$(this).children(".fp-description").slideToggle('medium');
			$(this).children("li").toggleClass("toggle-expanded");
	});			
	
		$(".fp-description").click(function() {
				$(this).children("li").removeClass("toggle-expanded");
			});
					
					
					
		});
