document.observe('dom:loaded', function(){
	$('leftSide').observe('click', function(e){
		var elm = Event.findElement(e, '.searchResults');
		if(elm){
			e.stop();
			var idParts = elm.id.split('-');
			window.location = "/business-details.php?locationId="+idParts[2];
		}
	});
});
