// JavaScript Document
rndimg = function() {

	if(document.getElementById && document.createTextNode)
	{
	  if(document.getElementById('random'))
	  {
		var rand_no = Math.random(Math.floor(rand_no)*3);
		var rnd_class = 'laalaa'+rand_no;
		document.getElementById('random').className+=' rnd_class';
	  }
	}
}
