/**
 * @author Daniel Staver
 */

(function($) {
    $.fn.clickable = function(options) {
        $(this).each(function(){
            var href = $(this).find('a:first-child').attr('href');
            $(this).click(function(){
                window.location.href = href;
                return false;
            });
        });
    }
})(jQuery);