jQuery(document).ready(function ()
{
    var $ = jQuery;
	$('ul.space-links').show();
	$('div.spaces div.main').show();
	$('a.space-link').each(function ()
	{
		var space_name = $(this).attr('class').replace(/space-link\s*/, '');
		$(this).click(function (e)
		{
			e.preventDefault();
			$(this).blur();
			var space = $('div.space.'+space_name);
			if (space.css('display') == 'block')
			{
				space.hide();
				return;
			}
			$('div.space').hide();
			$('div.space.'+space_name).show();
		});
	});
	$('.photoset-i').css({opacity:0.66});
	$('div.space').click(function (e)
	{
	    if ($(e.target).is('a') || $(e.target).is('img'))
	    {
	        return;
	    }
		$(this).hide();
	});
});
