﻿(function($) {
	$.fn.makeClickable = function() {
		$(this).each(function() {
			$(this)
				.click(function() { window.location = $(this).find("a:first").attr("href"); })
				.css({ "cursor": "pointer" });
		});
	};
})(jQuery);