// JavaScript Document
$(function()
{
	$("#btnFrame").click(function()
	{
		$("#frame").fadeIn("slow");
		return false;
	});
	$("#btnClose, #frame").click(function()
	{
		$("#frame").fadeOut("slow");
	});


	$('#boro-id h3').click(function()
	{
		$('#popup-choose-your-boro').show('fast');
		$('<div id="info" />').load('http://usyl.org/index.html #boros', function()
		{
			$(this).hide()
					.appendTo('#popup-choose-your-boro')
					.slideDown(2000);
		});
		return false;
	});
	$('#popup-choose-your-boro').click(function()
	{
		$('#popup-choose-your-boro').hide('normal');
		$('#boros').remove();
	});


});

