function rollover() {   this.src =   this.ro.src;   tc( this.id );}function rollout() {   this.src =   this.n.src; }function tc( id ) {var main = document.getElementById( "passport" );var hankTC = new Image();var codyTC = new Image();var stellaTC = new Image();hankTC.src = "hankTC.gif";stellaTC.src = "stellaTC.gif";codyTC.src = "codyTC.gif";	if( id == "cody" ) {		main.src = codyTC.src; 	}	if( id == "hank" ) {		main.src = hankTC.src;	}	if( id == "stella" ) {		main.src = stellaTC.src;	}}	function init() {   install_rollover( "kids-club" );   install_rollover( "toys" );   install_rollover( "books" );   install_rollover( "classroom" );   install_rollover( "about-us" );   install_rollover( "hank" );   install_rollover( "stella" );   install_rollover( "cody" );   install_rollover( "circle-left", "jpg" );   install_rollover( "circle-right", "jpg", "jpg" );}function install_rollover( id, e1, e2 ) {  if( e1 == null ) e1 = "gif";  if( e2 == null ) e2 = "gif";   var e = document.getElementById( id );   if( e != null ) {     e.n = new Image();     e.n.src = id + "." + e1;     e.ro = new Image();     e.ro.src = id + "-ro." + e2 ;     e.onmouseover = rollover;     e.onmouseout = rollout;  }}/*//function kids_club_mouse_over() {//   this.src = kids_club.src;   //alert(0);//}*/