Your script should have worked. Well, except it would do it to all pages, no matter what the initial class name.
But only if you put it *AFTER* the </body> tag in your page.
Try this:
Code:
</body>
<script type="text/javascript">
var cn = document.body.className;
if ( cn.indexOf("templateCollection") >= 0 || cn.indexOf("templateProduct") >= 0 )
{
document.body.className+=' randomizeBackground';
}
</script>
</html>