text();

function text() {
};

text = new text();
var number=0; 

text[number++] = "<span class='content'>Dress your baby in light cotton clothes during summer</span>";
text[number++] = "<span class='content'>Newborn babies are attracted to black, white and red colour</span>";
text[number++] = "<span class='content'>Never leave your baby alone in a walker, as it will tip easily</span>";
text[number++] = "<span class='content'>Spend some time playing with your baby everyday</span>";

increment = Math.floor(Math	.random() * 4);
document.write(text[increment]);

