window.addEvent('domready', function() {
	var divs = $$("#boxes div");
	var url = "";
	$each(divs, function(el){
		el.addEvent('mouseenter', function(){
			this.setStyle('cursor', 'pointer');
			this.setStyle('border-color', '#00618a');
		});
		el.addEvent('mouseleave', function(){
			this.setStyle('border-color', '#808080');
		});
		el.addEvent('click', function(){
			url = $$("#" + this.getProperty("id") + " a").getProperty("href");
			if(this.getProperty("id") == "box-recu"){
				moopop.popup($$("#" + this.getProperty("id") + " a"));
			}else{
				document.location.href = url;
			}
		});
		
	});
});
