/*<![CDATA[*/
        $(function() {
            $(".inner2").hide();

            $(".vm").toggle(function(){
                $(this).parents("div").prev(".inner2").show('slow');
                $(this).text("Close");
                $(this).attr("title", "Close");
            },function(){
                $(this).parents("div").prev(".inner2").hide();
                $(this).text("Read More...");
                $(this).attr("title", "Read More...");
            });
        });
    /*]]>*/

