

$(document).ready(function() {
	$('.uutinenVanhat2 .Link').each(function (i) {
		$(this).click(function() {
			var href = $(this).attr('rel');
			window.location = href;
		});
	});
});