function switchImg(img)
	{
	//alert(img.src.substring(0,img.src.length - 5));
	
	if (img.src.substring(img.src.length - 5,img.src.length - 4) == 'a')
		img.src = img.src.substring(0, img.src.length - 5) + 'b.png';
	else
		img.src = img.src.substring(0, img.src.length - 5) + 'a.png';
		
	//alert(img.src);
	}
