function DrawNew() {
			img1.src = "images/yellow.gif";
		}
		
function DrawColor() {
	
	switch(Math.floor(Math.random()*6)){
		case 0:
		img1.src = "images/aqua.gif";
		break;
		
		case 1:
		img1.src = "images/blue.gif";
		break;
		
		case 2:
		img1.src = "images/green.gif";
		break;
		
		case 3:
		img1.src = "images/pink.gif";
		break;
		
		case 4:
		img1.src = "images/red.gif";
		break;
		
		case 5:
		img1.src = "images/white.gif";
		break;

		default:
		img1.src = "images/yellow.gif";
	}
}