$(function() {

totalW = 0;
thisW = 0;
thisH = 0;

$('.post').each(function()
	{
		$(this).css('visibility' , 'visible').find('.gallery li').hide();
		$(this).find('.gallery li:nth(0)').show();
		if ( $(this).height() > thisH )
			{
				thisH = $(this).height();
			}
		
		thisW = $(this).find('li:nth(0)').width();
		
		if (thisW  != null && thisW > 374)
			{
				$(this).width(thisW);
			}
		
		else
			{
				thisW = $(this).find('.post-detail').width();
				$(this).width(thisW);
			}
		
		totalW += thisW + 22;
		$('#container').width(totalW).height(thisH);
	
	});

$('#footer .vcard').append('<p class="close"><a href="#">close</a></p>');

$('#branding a').live('click', function(e)
		{
			e.preventDefault();
		 	if ( $('#footer .vcard').is(':hidden') )
		 		{
		 		$('#footer .vcard').fadeIn(500);
		 		}
		 	
			 else
		 		{
		 		$('#footer .vcard').fadeOut(300);
		 		}
		
		});
	
$('#footer .vcard .close').live('click', function()
	{
		$('#footer .vcard').fadeOut(300);
	});


});
