﻿$(document).ready(function() { 
    // adjust blog
    //$(".HomeRightBG .Blog .Date").each(function() {
    //   $(this).html($(this).html().replace(/ [0-9]+:[0-9]+:[0-9]+ .*/g, ""));
    //});

    //$(".blog .body img").each(function() { 
    //    $(this).parent().attr("href","wp"); 
    //});
	
	//alert($(".Blog .Post .Body a *").size());
    
    var ImgRegex = /<img[^>]*>/gi;
    var BlogContent = $(".Blog .Body").html();
    var BlogImage = ImgRegex.exec(BlogContent);
    BlogContent = 
        BlogContent
            .replace(ImgRegex," ")
            .replace(/<[^\/][^>]*> *<\/[^>]*>/g," ")
            .replace(/ +/g," ")
            .replace(/<\/?p[^>]*>/gi," ")
            .replace(/$ +/,"");
            
    var MaxIterations = 100;
    var LastSpace = 400;
    var FullHTML = "";
    while( $(".Blog .Body").height() > 370 && --MaxIterations > 0 ) {
        LastSpace = BlogContent.lastIndexOf(" ",LastSpace - 1);
        BlogContent = BlogContent.substring(0,LastSpace);
        FullHTML = '<p><a href="index.php/page/1/">' + BlogImage + '</a></p><p>' + BlogContent + " &hellip;</p>";
        $(".Blog .Body").html(FullHTML);
    }
});
