function showWords(num)
{
document.getElementById('w'+num).className = 'wrappershow';
}

function hideWords(num)
{
document.getElementById('w'+num).className = 'wrapper';
}
