function switchPhone(){
	var phones = new Array('1-888-269-3259',
			   '1-888-696-3719',
			   '1-888-886-6103');
	var   a   =   Math.floor(Math.random()*phones.length);
	if(a==phones.length)
		a=phones.length-1;
	document.write(phones[a]) ;
}