$('document').ready(function(){
 $(".blogComment a").each(function(){
        
     $(this).attr("target","_blank");
    if ($(this).attr("href")!=null){
        if ($(this).attr("href").match(/^www.*/)) {
            var oldUrl = $(this).attr("href");
    	    $(this).attr("href","http://"+oldUrl);
         }
	}
    });

});