/**
 * href-stealer
 * Tested with jQuery 1.4.1.
 */
(function($) {
	$.fn.href_stealer = function(options) {
		// default settings
		var config = {
			
		};
		if (options) $.extend(config, options);
		
		this.each(function() {
			var t = $(this);
			var href = t.find('a').first().attr('href');
			t.click(function() {
				window.location = href;
			});
		});
		
		return this;
	};
})(jQuery);
