function CopySample(id)
{
	holdtext = document.createElement('textArea');
	holdtext.innerText = document.getElementById(id).innerText;
	copied = holdtext.createTextRange();
	copied.execCommand("RemoveFormat");
	copied.execCommand("Copy");
}

function ChangeHoverStyle(item, hoverStyle)
{
	item.className = hoverStyle;
}
