   $(function() {
            $(".inner2").hide();

            $(".vm").toggle(function(){
                $(this).parents("div").prev(".inner2").show('slow');
                $(this).text("view less");
                $(this).attr("title", "view less");
            },function(){
                $(this).parents("div").prev(".inner2").hide();
                $(this).text("view more");
                $(this).attr("title", "view more");
            });
        });
