$(function()
{

	$("a.fancybox").fancybox();

	$(".location").click(function()
	{
		$(".location").removeClass("selected");
		$(this).addClass("selected");
		var a = $(this);
		$("ul.depth_0 ul").each(function()
		{
			if (!$(this).is(a.parents("ul")) && !$(this).is(a.siblings("ul")))
			{
				$(this).slideUp(200);
			}
		});
		// $(this).parents("ul").slideDown(200);
		$(this).siblings("ul").slideDown(200);
		$(".store").slideUp(100);
		var selector = $(this).attr("href");
		selector = selector.replace("#", ".");
		$(selector).slideDown(200);

		return false;
	});
	
	simpleSlide();

});



