window.addEvent('domready', function() {
	var divs = $$("div.hovered");
	var url = "";
	new MultiBox('mb', {
		descClassName:'multiBoxDesc'/*,
		useOverlay:'true'*/
	});
	$each(divs, function(el){
		el.addEvent('mouseenter', function(){
			this.setStyle('cursor', 'pointer');
		});
		el.addEvent('click', function(){
			url = $$("#" + this.getProperty("id") + " div div a").getProperty("href");
			document.location.href = url;
		});
	});
});