(function($)
{
	$.fn.clickable = function(selector)
	{
		return this.click(function()
		{
			location.href = $(selector, this).attr('href');
		});
	};
	
})(jQuery);
