$.fn.clickableBlocks = function ()
{
	return this.each (function () {
		var $this = $(this)
			, $anchor = $this.find("a");
		if ($anchor.length)
		{
			$this.css("cursor", "pointer").click (function () {
				location.href = $anchor[0].href;
			});
		}
	});
}
$("html").addClass("has-js");
$("#footer-pharmas li").clickableBlocks();
