(function($){
    $(document).ready(function() {

        $('div.box-widget').each(function() {
           $(this).children('ul').each(function() {
                $('div#box-content',this).each(function(){
                   var currlink = $(this).children('p').children('a').attr('href')
                   prev = $(this).parent()
                   $('div#box-title',prev).each(function(){
                        $(this).children('a').attr('href', currlink)
                   });
                   
               });
           });
        });
    });
})(jQuery)
