theLocation = new String(document.location);
var imagePath = "http://atv.disney.go.com/disneychannel/media/global/watch_messages/";

if (theLocation.match("kimpossible") == "kimpossible"){
	abcKidsImage = imagePath+"wtch_kimpossible.gif";
}
else if (theLocation.match("thatssoraven") == "thatssoraven"){
	abcKidsImage = imagePath+"wtch_thatssoraven.gif";
}
else if (theLocation.match("suitelife") == "suitelife"){
	abcKidsImage = imagePath+"wtch_suitelife.gif";
}
else if (theLocation.match("thereplacements") == "thereplacements"){
	abcKidsImage = imagePath+"wtch_thereplacements.gif";
}
else if (theLocation.match("hannahmontana") == "hannahmontana"){
	abcKidsImage = imagePath+"wtch_hannahmontana.gif";
}
else if (theLocation.match("emperorsnewschool") == "emperorsnewschool"){
	abcKidsImage = imagePath+"wtch_emperorsnewsch.gif";
}
else {
	abcKidsImage = "";
}

if (abcKidsImage != ""){
	document.write ('<a href="http://abckids.com">');
	document.write ('<img src="' + abcKidsImage + '" border="0" alt="" />');
	document.write ('</a>');
}