var rand = [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40];
var alist;
function comp(a,b){return (Math.random() < 0.5) ? -1 : 1;} 
function shuffle()
{
	//get array of cards
	alist = document.getElementsByName("tlc")
	
	//randomize array
	rand.sort(comp);

	var x=0;	
	// loop through shuffled array placing cards!
	while( x < alist.length)
	{
		window.setTimeout("movecard("+x+")",x*15);
		x++;
	}
}
function movecard(x)
{
	alist[x].style.left=rand[x]*10;
	alist[x].style.zIndex=rand[x];

}
