$(function() {
	{
		var boxes = $(".box");
		var boxLinks = $(".box a");
		for( var index = 0; index < boxes.length; index++ ) {
			boxes.eq(index).click(function() {
				var context = $(this).context;
				document.location = $("a",context).get(0);
			});
		}
	}

	{
		var boxes = $(".box-small");
		var boxLinks = $(".box a");
		for( var index = 0; index < boxes.length; index++ ) {
			boxes.eq(index).click(function() {
				var context = $(this).context;
				document.location = $("a",context).get(0);
			});
		}
	}
});