function imgChange( a) 
{

	var str;
	str=a.src;

	if (str.indexOf("a.")!=-1) str=str.replace("a.","b.");
	else
	if (str.indexOf("b.")!=-1) str=str.replace("b.","a.");

	a.src=str;

}

