$(function()
{
	$("#homepage-circles a.heading, ul#home-nav a").hover(function()
	{
		if ($(".popup:visible").length == 0)
		{
			id = $(this).attr("href");
			id = id.substr(1);
			$("#homepage-circles div." + id).addClass("hovered");
		}
	}, function()
	{
		if ($(".popup:visible").length == 0)
		{
			id = $(this).attr("href");
			id = id.substr(1);
			$("#homepage-circles div." + id).removeClass("hovered");
		}
	});
	$("#homepage-circles a.heading, ul#home-nav a").click(function()
	{
		$("#homepage-circles a.heading:hidden").show();
		$("#homepage-circles div.active").removeClass("active hovered");
		$("#homepage-circles a[href=" + $(this).attr("href") + "]").hide();
		id = $(this).attr("href");
		$("#homepage-circles div." + id.substr(1)).addClass("active");
		id = "#box_" + id.substr(1);
		embed = "_homepage-videos.htm " + id + "_embed";
		if ($(".popup:visible").length > 0)
		{
			$(".popup:visible .youtube-video").remove();
			$(".popup:visible").fadeOut(500, function()
			{
				$(".left-col", id).append('<div class="youtube-video"></div>');
				$(".youtube-video").load(embed);
				$(id).fadeIn(500);
			});
		}
		else
		{
			$(".left-col", id).append('<div class="youtube-video"></div>');
			$(".youtube-video").load(embed);
			$(id).fadeIn(500);
		}
		return false;
	});
	$(".popup a.btn_close").click(function()
	{
		$e = $(this);
		$e.parents(".popup").fadeOut(500, function() { $(".youtube-video", $(this)).remove() });
		$("#homepage-circles a.heading:hidden").show();
		$("#homepage-circles div.active").removeClass("active hovered");
		return false;
	});
});