function random_text()

{};

var random_text = new random_text();



// Set the number of text strings to zero to start



var number = 0;



// Incremental list of all possible Text



// Display nothing

//random_text[number++] =""



//Free Fitness Eval
random_text[number++] ="<table width='550' border='0' align='center'><tr><td width='21%'><div align='center'><script type='text/javascript' src='http://w.sharethis.com/button/sharethis.js#publisher=271973ec-939c-40ed-9220-fbc3c7188a7a&amp;type=website&amp;embeds=true&amp;post_services=facebook%2Cdigg%2Cdelicious%2Cybuzz%2Ctwitter%2Cstumbleupon%2Creddit%2Ctechnorati%2Cmixx%2Cblogger%2Ctypepad%2Cwordpress%2Cgoogle_bmarks%2Cwindows_live%2Cmyspace%2Cfark%2Cbus_exchange%2Cpropeller%2Cnewsvine%2Clinkedin'></script><br><br></div></td></tr><tr><td><fb:like-box profile_id='152074036544' width='550' connections='18' stream='false'></fb:like-box></td></tr><tr><td><br><div align='center'><a href='https://twitter.com/LouiseatCreate' target='_blank'><img src='http://createyourself.co.uk/uploads/img4c583e0278f8f.png' width='290' height='102' alt='Twitter'></a></div></td></tr></table>"


// Create a random number with limits based on the number
// of possible random text strings



var random_number = Math.floor(Math.random() * number);



// Write out the random text to the browser



document.write(random_text[random_number]);