$(document).ready(function()
{
	$('.letterbox img').click(function()
	{
		// alert($(this).parent().get(0).href);
		window.location = $(this).parent().get(0).href;
	});
	$('.letterbox').click(function()
	{
		// alert($(this).parent().get(0).href);
		window.location = $(this).find('a').get(0).href;
	});
});