$(document).ready(function() {
    function go2() {
         var anchor=this.getElementsByTagName('a')[0];
         document.location.href=anchor.href;
     }
     var divs=$(".div2link div");
     $.each($(".div2link div"), function(intIndex) {
         $( this ).bind ("click", go2);

     });
});
