/**
 * Steal HREF v1.0
 * Released under CC-BY-SA http://creativecommons.org/licenses/by-sa/2.5/se/
 */
(function($){$.fn.steal_href=function(options){var config={index:0};if(options)$.extend(config,options);this.each(function(){var t=$(this);var href=t.find('a').eq(config.index).attr('href');t.click(function(){window.location=href;});});return this;};})(jQuery);

