$(document).ready(function(){
    $("div[href]").each(function() {
        // get href url
        var url = $(this).attr('href');

        // add mouse poiter style
        $(this).css('cursor', 'pointer');
        $(this).click(function(){ window.location = url });
    })
})