function SolutionBullets() {
var bullets = new Array()
bullets[0] = "<ul><li>With the proper nurturing, communities grow because of the relationships built between the community members and the day-to-day administrators of the websites</li><li>We strive to provide a unique and appealing product mix that sells customers an experience, not just a product</li></ul>";
bullets[1] = "<ul><li>We provide opportunities to our community members to be active participants on the website of their favourite artist</li><li>We believe that the key to a strong discussion board environment is lively conversation, active moderation and a logical structure</li></ul>";
bullets[2] = "<ul><li>officialCOMMUNITY understands that someone signs up for an artist's newsletter because they are interested in that artist, not in a genre of music or items</li><li>officialCOMMUNITY actively posts news in blogs that appear right on our artists' homepages. This shows new site visitors that the site is active, that 'somebody is home'</li></ul>";


var Q1 = bullets.length;
var whichSols=Math.round(Math.random()*(Q1-1));
var obj = document.getElementById("solBullets")
obj.innerHTML=bullets[whichSols]
}
