$(function() {
///////////////////////////////////////////////////////
/// faqs ///
///////////////////////////////////////////////////////
	$('#venue-directions p').hide(0);
	$('#venue-directions p.open').show(0);
	$('#venue-directions h3').css('cursor', 'pointer');
	$('#venue-directions h3').click(function()
	{
		var
		el = this,
		node = $(this).next();

		$('#venue-directions h3').each(function(){
			$(this).removeClass('expanded');
		});

		$('#venue-directions p').removeClass('open');
		$('#venue-directions p').each(function(){
			if( $(this).is(':visible') && $(this).get(0) != $(node).get(0) )
				$(this).slideUp('slow');
		});

		$(node).is(':hidden') ?
		$(node).slideDown('slow', function(){ $(el).addClass('expanded') }) :
		$(node).slideUp('slow', function(){ $(el).removeClass('expanded') }) ;
	});
///////////////////////////////////////////////////////
});