function toggle(value)
{
	clear();
	if (value == 'question1') answer = 'Hoopler is a service that simplifies the sharing of links, using RSS feeds and a Drudge-like UI.';
	if (value == 'question2') answer = 'Hoopler is dead simple. Install the firefox add-on that inserts a "Hoop It" option to your right-click menu, find a page you want to share with your friends, then launch it. <br/><br/> Send your friends the hoop name and everyone can contribute to the same hoop. If your hoop has a password, share it with your friends and get some exclusivity. Create a live bookmark in Firefox and never miss another article.<br/><br/>It\'s also a great way to synchronize bookmarks between different computers and browsers.';
	if (value == 'question3') answer = 'When you find an interesting article or video, how do you send it to your friends? For most people the answer is email, it\'s just so simple. But if you\'re like me, you have different "groups" of friends interested in different things. I don\'t send the same articles to everyone, and when a friend sends me an article, I usually don\'t even bother forwarding it along. It\'s too difficult to keep track of all the emails.<br/><br/>I know there are social bookmarking sites, but I don\'t want to check 20 different pages of bookmarks to see what my friends are up to. I could combine all their bookmark pages into one giant RSS feed, but I\'m tired of creating accounts everywhere. Besides, most of my friends don\'t even use those social bookmarking sites. Everyone is account saturated, people are much more likely to subscribe to my hoop RSS feed.';
	if (value == 'question4') answer = 'The hoop name is like a key to the hoop, just go <a href=\'/web/xml/\'>here</a> for help. The link is always <nobr>http://www.hoopler.com/<i>FEEDNAME</i></nobr> for the Drudge view, add "/xml" to the end for the RSS feed. Just replace the italic portion with the name your friend has given you.';
	if (value == 'question5') answer = 'If you use wordpress, we have a <a href=wordpress>plugin</a>. If you use some other blogging software, there is probably a built-in feature that allows you to embed any feed. If you built your site from scratch, there are many generic services available on the net to translate rss to html.';
	if (value == 'question6') answer = 'Manage the feed <a href="/web/manage.php">here</a>.';
	if (value == 'question7') answer = 'This service is optimized for firefox, but that being said, the plugin only re-directs you to the <a href="/web/launch.php">add content</a> page with most of the fields pre-filled. You can do it manually if you want.';
	var elem = document.getElementById(value);	
	elem.innerHTML = '<br/>' + answer + '<br/><br/>';
}	

function clear()
{
		document.getElementById("question1").innerHTML = "&nbsp;";
		document.getElementById("question2").innerHTML = "&nbsp;";
		document.getElementById("question3").innerHTML = "&nbsp;";
		document.getElementById("question4").innerHTML = "&nbsp;";
		document.getElementById("question5").innerHTML = "&nbsp;";
		document.getElementById("question6").innerHTML = "&nbsp;";
		document.getElementById("question7").innerHTML = "&nbsp;";
}

