	/*****
	 * If you add a "bubble" class to an <a> - this will look for the nearest <li> which can then be used for clicking too.
	 ****/
	$('.rec a').click(function(event) {
		event.stopPropagation();		
	}).each(function() {
		var $this = $(this);
		$this.closest('div.rec').click(function() {
			document.location = $this.attr('href');	
			return false;
		});
	});
