function truncate(text,length, ellipsis) {    
    if (typeof length == 'undefined') var length = 240;
    if (typeof ellipsis == 'undefined') var ellipsis = '...';

    if (text.length < length) return text;

    for (var i = length-1; text.charAt(i) != ' '; i--) {
        length--;
    }
    return text.substr(0, length) + ellipsis;
}

var n = 1;
var excerpt;

excerpt = 'Be sure to check up on your friends. Their tanks may be too warm or too cold. Clean up algae to earn an additional level bonus! When you’re away, they can help with your tank too. Diligent friends can keep a happy and healthy community of tanks!';
excerpt = truncate(excerpt);

document.write('<li class=\"clearfix\">');
document.write('<h3>Your friends need help!</h3>');
document.write('<p>');
if(n==1)
{
document.write('<img alt=\"Barrel\" src=\"http://content.p.static.zynga.com/images/fishville/icon_green_fish.png?v=1020\"/>');
}
else
{
document.write('<img alt=\"Barrel\" src=\"http://content.p.static.zynga.com/images/fishville/icon_blue_fish.png?v=1020\"/>');
}
document.write(excerpt);
document.write('</p>');
document.write('<p class=\"read_more\"><a href="http://blog.fishville.net/2009/11/your-friends-need-help.html">read more >></a></p>');
document.write('</li>');
n++;

excerpt = 'Shrimp, Hermit Crabs even the Maxima Clam will brighten up any tank. Send creatures to your friends. Then make sure they return the favor! Collect them all and start a mini creature party in your aquarium!';
excerpt = truncate(excerpt);

document.write('<li class=\"clearfix\">');
document.write('<h3>Give creatures to your friends!</h3>');
document.write('<p>');
if(n==1)
{
document.write('<img alt=\"Barrel\" src=\"http://content.p.static.zynga.com/images/fishville/icon_green_fish.png?v=1020\"/>');
}
else
{
document.write('<img alt=\"Barrel\" src=\"http://content.p.static.zynga.com/images/fishville/icon_blue_fish.png?v=1020\"/>');
}
document.write(excerpt);
document.write('</p>');
document.write('<p class=\"read_more\"><a href="http://blog.fishville.net/2009/11/give-creatures-to-your-friends.html">read more >></a></p>');
document.write('</li>');
n++;


document.write('<div class=\"link_seeall\">');
document.write('<a href=\"http://blog.fishville.net\">See all news >></a>');
document.write('</div>');
<!-- ph=1 -->
<!-- nhm:from_kauri -->
