/*
$(function() {
	$("table.blocks, table.blocks2").each(function() {
		var $a = $(this).find("a");
		if (!$a.length) return;
		
		var href = $a.attr("href");
		
		$(this).css({"cursor" : "pointer"}).click(function() {
			window.location.href = href;
			return false;
		});
	});
	
	$("table.blocks, table.blocks2").hover(function() {
		$(this).expose({
			"closeOnClick" : false,
			"closeOnEsc" : false,
			"loadSpeed" : 700, 
			"closeSpeed" : 0, 
			"opacity" : 0.8
		});
	}, function() {
		$.mask.getMask().stop(true, false);
		$.mask.close();
	});
});
*/