$(document).ready(Dokument_OnLoad);

function Dokument_OnLoad() {
	$('div.contentbox').bind('click', function() {
		var link =  $(this).children('div.footer').children('a').attr('href');
		self.location.href = link;
	});
}

