// JavaScript Document
function voteUp(ideaID)
{
	// votes an idea down
	alert(ideaID);
}
function voteDown(ideaID)
{
	// votes and idea up
}