<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns="http://www.w3.org/TR/REC-html40">

<head>
<title>Welcome to Early Childhood Curriculum!</title>

<style>
<!--
BODY{
cursor:url("cursor/fadecur.ani");
}
-->
</style>

<meta http-equiv="Page-Enter" content="revealTrans(Duration=1.0,Transition=23)">

<script language="JavaScript" type="text/JavaScript">
<!--
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//
function FP_goToURL(url) {//v1.0
 window.location=url;
}
-->
</script>
<meta name="Microsoft Border" content="b">
</head>

<body background="bk.gif" onLoad="MM_preloadImages('buttons/homeinv.gif','buttons/currbutinv.gif','buttons/boxesinv.gif','buttons/storykitsinv.gif','buttons/puppetsinv.gif','buttons/toysinv.gif','buttons/specialsinv.gif','buttons/whatsnewinv.gif','buttons/aboutusinv.gif','buttons/contactusinv.gif')">


<div id="dot0" style="position: absolute; visibility: hidden; height: 18; width: 18;">
	<img src="bullet.gif" height=18 width=18>
</div>
<div id="dot1" style="position: absolute; height: 18; width: 18; left:166px; top:15px">
	<img src="bullet.gif" height=18 width=18>
</div>
<div id="dot2" style="position: absolute; height: 18; width: 18; left:165px; top:12px">
	<img src="bullet.gif" height=18 width=18>
</div>
<div id="dot3" style="position: absolute; height: 18; width: 18; left:163px; top:12px">
	<img src="bullet.gif" height=18 width=18>
</div>
<div id="dot4" style="position: absolute; height: 18; width: 18; left:164px; top:13px">
	<img src="bullet.gif" height=18 width=18>
</div>
<div id="dot5" style="position: absolute; height: 18; width: 18; left:165px; top:14px">
	<img src="bullet.gif" height=18 width=18>
</div>
<div id="dot6" style="position: absolute; height: 18; width: 18; left:167px; top:16px">
	<img src="bullet.gif" height=18 width=18>
</div>

<script LANGUAGE="JavaScript">
<!-- hide code

/*
Elastic Trail script (By Philip Winston @ pwinston@yahoo.com, URL: http://www.geocities.com/pwinston/)
Script featured on Dynamicdrive.com
For this and 100's more DHTML scripts, visit http://dynamicdrive.com
*/

var nDots = 7;

var Xpos = 0;
var Ypos = 0;

  // fixed time step, no relation to real time
var DELTAT = .01;
  // size of one spring in pixels
var SEGLEN = 10;
  // spring constant, stiffness of springs
var SPRINGK = 10;
  // all the physics is bogus, just picked stuff to
  // make it look okay
var MASS = 1;
// Positive XGRAVITY pulls right, negative pulls left
// Positive YGRAVITY pulls down, negative up
var XGRAVITY = 0;
var YGRAVITY = 50;
// RESISTANCE determines a slowing force proportional to velocity
var RESISTANCE = 10;
  // stopping criterea to prevent endless jittering
  // doesn't work when sitting on bottom since floor
  // doesn't push back so acceleration always as big
  // as gravity
var STOPVEL = 0.1;
var STOPACC = 0.1;
var DOTSIZE = 11;
  // BOUNCE is percent of velocity retained when 
  // bouncing off a wall
var BOUNCE = 0.75;

var isNetscape = navigator.appName=="Netscape";

  // always on for now, could be played with to
  // let dots fall to botton, get thrown, etc.
var followmouse = true;

var dots = new Array();
init();

function init()
{
    var i = 0;
    for (i = 0; i < nDots; i++) {
        dots[i] = new dot(i);
    }
    
    if (!isNetscape) {
        // I only know how to read the locations of the 
        // <LI> items in IE
        //skip this for now
        // setInitPositions(dots)
    }
    
    // set their positions
    for (i = 0; i < nDots; i++) {
        dots[i].obj.left = dots[i].X;
        dots[i].obj.top = dots[i].Y;
    }
    
    
    if (isNetscape) {
        // start right away since they are positioned
        // at 0, 0
        startanimate();
    } else {
        // let dots sit there for a few seconds
        // since they're hiding on the real bullets
        setTimeout("startanimate()", 1000);
    }
}



function dot(i) 
{
    this.X = Xpos;
    this.Y = Ypos;
    this.dx = 0;
    this.dy = 0;
    if (isNetscape) {	
        this.obj = eval("document.dot" + i);
    } else {
        this.obj = eval("dot" + i + ".style");
    }
}


function startanimate() {	
    setInterval("animate()", 20);
}


// This is to line up the bullets with actual LI tags on the page
// Had to add -DOTSIZE to X and 2*DOTSIZE to Y for IE 5, not sure why
// Still doesn't work great
function setInitPositions(dots)
{
    // initialize dot positions to be on top 
    // of the bullets in the <ul>
    var startloc = document.all.tags("LI");
    var i = 0;
    for (i = 0; i < startloc.length && i < (nDots - 1); i++) {
        dots[i+1].X = startloc[i].offsetLeft
            startloc[i].offsetParent.offsetLeft - DOTSIZE;
        dots[i+1].Y = startloc[i].offsetTop +
            startloc[i].offsetParent.offsetTop + 2*DOTSIZE;
    }
    // put 0th dot above 1st (it is hidden)
    dots[0].X = dots[1].X;
    dots[0].Y = dots[1].Y - SEGLEN;
}

// just save mouse position for animate() to use
function MoveHandler(e)
{
    Xpos = e.pageX;
    Ypos = e.pageY;	  
    return true;
}

// just save mouse position for animate() to use
function MoveHandlerIE() {
    Xpos = window.event.x + document.body.scrollLeft;
    Ypos = window.event.y + document.body.scrollTop;	  
}

if (isNetscape) {
    document.captureEvents(Event.MOUSEMOVE);
    document.onMouseMove = MoveHandler;
} else {
    document.onmousemove = MoveHandlerIE;
}


function vec(X, Y)
{
    this.X = X;
    this.Y = Y;
}

// adds force in X and Y to spring for dot[i] on dot[j]
function springForce(i, j, spring)
{
    var dx = (dots[i].X - dots[j].X);
    var dy = (dots[i].Y - dots[j].Y);
    var len = Math.sqrt(dx*dx + dy*dy);
    if (len > SEGLEN) {
        var springF = SPRINGK * (len - SEGLEN);
        spring.X += (dx / len) * springF;
        spring.Y += (dy / len) * springF;
    }
}


function animate() {	
    // dots[0] follows the mouse,
    // though no dot is drawn there
    var start = 0;
    if (followmouse) {
        dots[0].X = Xpos;
        dots[0].Y = Ypos;	
        start = 1;
    }
    
    for (i = start ; i < nDots; i++ ) {
        
        var spring = new vec(0, 0);
        if (i > 0) {
            springForce(i-1, i, spring);
        }
        if (i < (nDots - 1)) {
            springForce(i+1, i, spring);
        }
        
        // air resisitance/friction
        var resist = new vec(-dots[i].dx * RESISTANCE,
            -dots[i].dy * RESISTANCE);
        
        // compute new accel, including gravity
        var accel = new vec((spring.X + resist.X)/MASS + XGRAVITY,
            (spring.Y + resist.Y)/ MASS + YGRAVITY);
        
        // compute new velocity
        dots[i].dx += (DELTAT * accel.X);
        dots[i].dy += (DELTAT * accel.Y);
        
        // stop dead so it doesn't jitter when nearly still
        if (Math.abs(dots[i].dx) < STOPVEL &&
            Math.abs(dots[i].dy) < STOPVEL &&
            Math.abs(accel.X) < STOPACC &&
            Math.abs(accel.Y) < STOPACC) {
            dots[i].dx = 0;
            dots[i].dy = 0;
        }
        
        // move to new position
        dots[i].X += dots[i].dx;
        dots[i].Y += dots[i].dy;
        
        // get size of window
        var height, width;
        if (isNetscape) {
            height = window.innerHeight + window.pageYOffset;
            width = window.innerWidth + window.pageXOffset;
        } else {	
            height = document.body.clientHeight + document.body.scrollTop;
            width = document.body.clientWidth + document.body.scrollLeft;
        }
        
        // bounce off 3 walls (leave ceiling open)
        if (dots[i].Y >=  height - DOTSIZE - 1) {
            if (dots[i].dy > 0) {
                dots[i].dy = BOUNCE * -dots[i].dy;
            }
            dots[i].Y = height - DOTSIZE - 1;
        }
        if (dots[i].X >= width - DOTSIZE) {
            if (dots[i].dx > 0) {
                dots[i].dx = BOUNCE * -dots[i].dx;
            }
            dots[i].X = width - DOTSIZE - 1;
        }
        if (dots[i].X < 0) {
            if (dots[i].dx < 0) {
                dots[i].dx = BOUNCE * -dots[i].dx;
            }
            dots[i].X = 0;
        }
        
        // move img to new position
        dots[i].obj.left = dots[i].X;			
        dots[i].obj.top =  dots[i].Y;		
    }
}

// end code hiding -->
</script>



<table border="0" cellspacing="8" cellpadding="0" width="777">

<tr><td rowspan="3" width="137" valign="top">

    <a name="top"></a>

    <!--webbot CLIENTSIDE 
bot="XmmFpEx" MODULEID="'early childhood (project) (Project)\gelbase1_off.xws'" PREVIEW="<img src='gelbase1.gif?00D6F41C' editor='menumaker' border='0'>" startspan  -->
<script src="xaramenu.js"></script><script menumaker src="gelbase1.js"></script><noscript><img src="gelbase1.gif?00D6F41C" editor="menumaker"></noscript>
    <!--webbot 
bot="XmmFpEx" endspan i-checksum="63316"  -->

  
  <p>&nbsp;</td>

<td width="616">

  <p align="center">
  <img border="0" src="images/Hometitle.gif" width="589" height="58" alt="Early Childhood Curriculum"></p>
  <p align="center">
    <img border="0" src="index-palma.jpg" width="312" height="258" align="left" alt="Early Childhood Curriculum by Palma Smiley" hspace="1"></p>
  <div align="center">
    <p>
  <!--webbot bot="FLCFX_SlideShow" preview="&lt;img src=&quot;file:///C:/Documents and Settings/rocky/My Documents/Early Childhood backup/_frontlook/CFXLogoSS.gif&quot; width=&quot;246&quot; height=&quot;245&quot;&gt;" clientside component-name="SS20060320073726" component-width="246" component-height="245" component-align="center" component-leftmargin="0" component-topmargin="0" component-rightmargin="0" component-bottommargin="0" component-divideareas="1" component-divider="0" component-iaheight="188" component-iawidth="244" component-taheight="50" component-areaspacing="5" component-bordersize="1" component-bordercolor="3937500" component-bkimage="graybk.gif" component-bkaudio="(None)" component-bkaudio-playonce="0" component-bkcolor="16777215" component-absref="0" component-previewmode="localpreview" component-overwrite="overwrite" component-startmute="0" component-mouseoverpause="1" anim-stepdelay="30" anim-stepsize="11" anim-imagedelay="4400" anim-mode="start2endloop" slides-count="15" slide1-image="alligator.jpg" slide1-imagesaveas="index.htmlSS200603200737261alligator.jpg" slide1-scaling="fitcenter" slide1-descaftereffect="0" slide1-audio="(None)" slide1-url="http://earlychildhood-curr.com/wind-uptoys.html#alligator" slide1-target slide1-status="" slide1-effect="fromleft" slide1-text="&lt;P align=center&gt;&lt;STRONG&gt;NEW! Wind-Up Swimming&amp;nbsp;Alligators&lt;/STRONG&gt;&lt;/P&gt;" slide2-image="first-familysm.jpg" slide2-imagesaveas="index.htmlSS200603200737262first-familysm.jpg" slide2-scaling="fitcenter" slide2-descaftereffect="0" slide2-audio="(None)" slide2-url="http://www.earlychildhood-curr.com/colorstories.htm#first" slide2-target slide2-status="" slide2-effect="fromleft" slide2-text="&lt;P align=center&gt;&lt;STRONG&gt;&lt;FONT color=#ff0000&gt;Don't miss the New First Family!&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;" slide3-image="butterflieswindup.jpg" slide3-imagesaveas="butterflieswindup.jpg" slide3-scaling="noscalecenter" slide3-descaftereffect="0" slide3-audio="(None)" slide3-url="http://earlychildhood-curr.com/wind-uptoys.html#butterfly" slide3-target slide3-status="" slide3-effect="fromleft" slide3-text="&lt;P align=center&gt;&lt;STRONG&gt;NEW!&amp;nbsp;Wind-Up Flapping&amp;nbsp;Butterflies&lt;/STRONG&gt;&lt;/P&gt;" slide4-image="caterpillarswindup.jpg" slide4-imagesaveas="caterpillarswindup.jpg" slide4-scaling="noscalecenter" slide4-descaftereffect="0" slide4-audio="(None)" slide4-url="http://earlychildhood-curr.com/wind-uptoys.html#caterpillar" slide4-target slide4-status="" slide4-effect="fromleft" slide4-text="&lt;P align=center&gt;&lt;STRONG&gt;NEW!&amp;nbsp; Wind-Up Crawling&amp;nbsp;Caterpillars&lt;/STRONG&gt;&lt;/P&gt;" slide5-image="chick.jpg" slide5-imagesaveas="chick.jpg" slide5-scaling="noscalecenter" slide5-descaftereffect="0" slide5-audio="(None)" slide5-url="http://earlychildhood-curr.com/wind-uptoys.html#chick" slide5-target slide5-status="" slide5-effect="fromleft" slide5-text="&lt;P align=center&gt;&lt;STRONG&gt;NEW!&amp;nbsp; Wind-Up Hopping&amp;nbsp;Chicks&lt;/STRONG&gt;&lt;/P&gt;" slide6-image="clownfishwindup.jpg" slide6-imagesaveas="clownfishwindup.jpg" slide6-scaling="noscalecenter" slide6-descaftereffect="0" slide6-audio="(None)" slide6-url="http://earlychildhood-curr.com/wind-uptoys.html#clownfish" slide6-target slide6-status="" slide6-effect="fromleft" slide6-text="&lt;P align=center&gt;&lt;STRONG&gt;NEW! Wind-Up Swimming Clown Fish&lt;/STRONG&gt;&lt;/P&gt;" startspan slide7-text="&lt;P align=center&gt;&lt;STRONG&gt;NEW! Wind-Up Swimming&amp;nbsp;Dolphins&lt;/STRONG&gt;&lt;/P&gt;" slide7-audio="(None)" slide7-effect="fromleft" slide7-status="" slide8-image="goldfishnew.jpg" slide8-target slide9-scaling="noscalecenter" slide8-url="http://earlychildhood-curr.com/wind-uptoys.html#goldfish" slide9-descaftereffect="0" slide7-image="dolphin.jpg" slide8-descaftereffect="0" slide9-audio="(None)" slide8-text="&lt;P align=center&gt;&lt;STRONG&gt;NEW! Wind-Up Swimming Goldfish&lt;/STRONG&gt;&lt;/P&gt;" slide7-target slide7-descaftereffect="0" slide8-effect="fromleft" slide9-target slide8-scaling="noscalecenter" slide8-status="" slide8-audio="(None)" slide9-url="http://earlychildhood-curr.com/wind-uptoys.html#frog" slide7-imagesaveas="dolphin.jpg" slide7-url="http://earlychildhood-curr.com/wind-uptoys.html#dolphin" slide9-image="HoppingFrog.jpg" slide9-imagesaveas="HoppingFrog.jpg" slide9-text="&lt;P align=center&gt;&lt;STRONG&gt;NEW! Wind-Up Hopping Frogs&lt;/STRONG&gt;&lt;/P&gt;" slide9-effect="fromleft" slide7-scaling="noscalecenter" slide9-status="" slide8-imagesaveas="goldfishnew.jpg" slide10-url="http://earlychildhood-curr.com/wind-uptoys.html#ladybugwindup" slide10-audio="(None)" slide10-effect="fromleft" slide10-scaling="noscalecenter" slide10-status="" slide10-image="ladybugwindup.jpg" slide10-descaftereffect="0" slide10-target slide10-text="&lt;P align=center&gt;&lt;STRONG&gt;NEW!&amp;nbsp;Wind-Up Crawling, Flapping&amp;nbsp;Ladybugs&lt;/STRONG&gt;&lt;/P&gt;" slide10-imagesaveas="ladybugwindup.jpg" slide11-audio="(None)" slide12-image="shark.jpg" slide14-url="http://earlychildhood-curr.com/wind-uptoys.html#turtle" slide14-imagesaveas="turtle.jpg" slide14-scaling="noscalecenter" slide13-text="&lt;P align=center&gt;&lt;STRONG&gt;NEW! Wind-Up Swimming Frogs&lt;/STRONG&gt;&lt;/P&gt;" slide11-target slide11-image="Seal.jpg" slide14-effect="fromleft" slide14-status slide13-imagesaveas="swimfrog.jpg" slide11-url="http://earlychildhood-curr.com/wind-uptoys.html#seal" slide12-text="&lt;P align=center&gt;&lt;STRONG&gt;NEW! Wind-Up Swimming Sharks&lt;/STRONG&gt;&lt;/P&gt;" slide11-scaling="noscalecenter" slide13-effect="fromleft" slide12-imagesaveas="shark.jpg" slide13-status slide14-descaftereffect="0" slide14-target slide14-audio="(None)" slide12-url="http://earlychildhood-curr.com/wind-uptoys.html#shark" slide13-descaftereffect="0" slide11-text="&lt;P align=center&gt;&lt;STRONG&gt;NEW! Wind-Up Swimming&amp;nbsp;Seals&lt;/STRONG&gt;&lt;/P&gt;" slide12-scaling="noscalecenter" slide12-descaftereffect="0" slide11-imagesaveas="Seal.jpg" slide12-effect="fromleft" slide13-audio="(None)" slide13-target slide12-status slide14-image="turtle.jpg" slide11-descaftereffect="0" slide13-url="http://earlychildhood-curr.com/wind-uptoys.html#swimfrog" slide12-audio="(None)" slide13-scaling="noscalecenter" slide14-text="&lt;P align=center&gt;&lt;STRONG&gt;NEW! Wind-Up Swimming Turtles&lt;/STRONG&gt;&lt;/P&gt;" slide13-image="swimfrog.jpg" slide11-effect="fromleft" slide12-target slide11-status slide15-effect="fromleft" slide15-status slide15-target slide15-url="http://earlychildhood-curr.com/wind-uptoys.html#whale" slide15-scaling="noscalecenter" slide15-descaftereffect="0" slide15-audio="(None)" slide15-image="whale.jpg" slide15-text="&lt;P align=center&gt;&lt;STRONG&gt;NEW! Wind-Up Swimming Whales&lt;/STRONG&gt;&lt;/P&gt;" slide15-imagesaveas="whale.jpg" --><script language=JavaScript src="./_frontlook/SlideShow.js"></script>
<script language=JavaScript>
	if ( document.layers )
	{
		function OnLoadSS20060320073726 ()
		{
			if ( OldOnLoadSS20060320073726 != "" ) OldOnLoadSS20060320073726 ();
			widthCheckSS20060320073726 = window.innerWidth;
			heightCheckSS20060320073726 = window.innerHeight;
			SS20060320073726.CreateLayers ();
			SS20060320073726.StartSlideShow ();
		}
		function OnResizeSS20060320073726 ()
		{
			if ( OldOnResizeSS20060320073726 != "" ) OldOnResizeSS20060320073726 ();
			if ( widthCheckSS20060320073726 != window.innerWidth || heightCheckSS20060320073726 != window.innerHeight )
				document.location.href = document.location.href;
		}

		var widthCheckSS20060320073726;
		var heightCheckSS20060320073726;
		var OldOnLoadSS20060320073726 = (window.onload) ? window.onload : "";
		var OldOnResizeSS20060320073726 = ( window.onresize ) ? window.onresize : "";
		window.onload = OnLoadSS20060320073726;
		window.onresize = OnResizeSS20060320073726;
	}
	var SS20060320073726 = new SlideShowObj ( "SS20060320073726", 
		246, 245, "Center", 0, 0, 0, 0, 
		188, 5, 0,
		30, 11, 4400, 1, 
		"./_frontlook/graybk.gif", "", "#FFFFFF", 1, "#DC143C", 
		"./_frontlook/index.htmlSS200603200737261alligator.jpg*244*147##FS####FS##http://earlychildhood-curr.com/wind-uptoys.html#alligator##FS####FS####FS##2##FS####FS##./_frontlook/index.htmlSS200603200737261.htm##FS##0##FS##1##RS##./_frontlook/index.htmlSS200603200737262first-familysm.jpg*244*175##FS####FS##http://www.earlychildhood-curr.com/colorstories.htm#first##FS####FS####FS##2##FS####FS##./_frontlook/index.htmlSS200603200737262.htm##FS##0##FS##1##RS##./_frontlook/butterflieswindup.jpg*167*150##FS####FS##http://earlychildhood-curr.com/wind-uptoys.html#butterfly##FS####FS####FS##2##FS####FS##./_frontlook/index.htmlSS200603200737263.htm##FS##0##FS##1##RS##./_frontlook/caterpillarswindup.jpg*198*88##FS####FS##http://earlychildhood-curr.com/wind-uptoys.html#caterpillar##FS####FS####FS##2##FS####FS##./_frontlook/index.htmlSS200603200737264.htm##FS##0##FS##1##RS##./_frontlook/chick.jpg*154*125##FS####FS##http://earlychildhood-curr.com/wind-uptoys.html#chick##FS####FS####FS##2##FS####FS##./_frontlook/index.htmlSS200603200737265.htm##FS##0##FS##1##RS##./_frontlook/clownfishwindup.jpg*180*153##FS####FS##http://earlychildhood-curr.com/wind-uptoys.html#clownfish##FS####FS####FS##2##FS####FS##./_frontlook/index.htmlSS200603200737266.htm##FS##0##FS##1##RS##./_frontlook/dolphin.jpg*208*119##FS####FS##http://earlychildhood-curr.com/wind-uptoys.html#dolphin##FS####FS####FS##2##FS####FS##./_frontlook/index.htmlSS200603200737267.htm##FS##0##FS##1##RS##./_frontlook/goldfishnew.jpg*184*117##FS####FS##http://earlychildhood-curr.com/wind-uptoys.html#goldfish##FS####FS####FS##2##FS####FS##./_frontlook/index.htmlSS200603200737268.htm##FS##0##FS##1##RS##./_frontlook/HoppingFrog.jpg*120*145##FS####FS##http://earlychildhood-curr.com/wind-uptoys.html#frog##FS####FS####FS##2##FS####FS##./_frontlook/index.htmlSS200603200737269.htm##FS##0##FS##1##RS##./_frontlook/ladybugwindup.jpg*151*133##FS####FS##http://earlychildhood-curr.com/wind-uptoys.html#ladybugwindup##FS####FS####FS##2##FS####FS##./_frontlook/index.htmlSS2006032007372610.htm##FS##0##FS##1##RS##./_frontlook/Seal.jpg*182*114##FS####FS##http://earlychildhood-curr.com/wind-uptoys.html#seal##FS####FS####FS##2##FS####FS##./_frontlook/index.htmlSS2006032007372611.htm##FS##0##FS##1##RS##./_frontlook/shark.jpg*149*143##FS####FS##http://earlychildhood-curr.com/wind-uptoys.html#shark##FS####FS####FS##2##FS####FS##./_frontlook/index.htmlSS2006032007372612.htm##FS##0##FS##1##RS##./_frontlook/swimfrog.jpg*239*141##FS####FS##http://earlychildhood-curr.com/wind-uptoys.html#swimfrog##FS####FS####FS##2##FS####FS##./_frontlook/index.htmlSS2006032007372613.htm##FS##0##FS##1##RS##./_frontlook/turtle.jpg*185*95##FS####FS##http://earlychildhood-curr.com/wind-uptoys.html#turtle##FS####FS####FS##2##FS####FS##./_frontlook/index.htmlSS2006032007372614.htm##FS##0##FS##1##RS##./_frontlook/whale.jpg*149*116##FS####FS##http://earlychildhood-curr.com/wind-uptoys.html#whale##FS####FS####FS##2##FS####FS##./_frontlook/index.htmlSS2006032007372615.htm##FS##0##FS##1##RS##", 0, 1);
	SS20060320073726.GenerateHTML ();
	if(!document.layers) SS20060320073726.StartSlideShow ();
</script><!--webbot bot="FLCFX_SlideShow" endspan i-checksum="50355" -->&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>
          <p align="center"><font color="#AE1A1A"><b>(Click on a picture to jump 
          to that page)</b></font><table border="0" style="border-collapse: collapse" width="560" id="table2" cellspacing="2" cellpadding="5">
      <tr>
        <td width="255">
        <p align="center"><b><font size="6" color="#CC3300">
        <a href="handpuppets.html"><font color="#CC3300">Click Here to See the 
        New Large Hand Puppets&nbsp; </font></a></font></b></td>
        <td valign="top" width="279">
        <div align="center">
          <div style="position: absolute; width: 1px; height: 186px; z-index: 1; left: 559px; top: 392px" id="layer1" onclick="FP_goToURL(/*href*/'handpuppets.html')">
&nbsp;</div>
          <!--webbot bot="FLCFX_SlideShow" preview="&lt;img src=&quot;file:///C:/Documents and Settings/rocky/My Documents/Early Childhood backup/_frontlook/CFXLogoSS.gif&quot; width=&quot;180&quot; height=&quot;185&quot;&gt;" clientside component-name="SS20070408175130" component-width="180" component-height="185" component-align="center" component-leftmargin="0" component-topmargin="0" component-rightmargin="0" component-bottommargin="0" component-divideareas="0" component-divider="0" component-iaheight="185" component-iawidth="180" component-taheight="70" component-areaspacing="10" component-bordersize="0" component-bordercolor="-1" component-bkimage="(None)" component-bkaudio="(None)" component-bkaudio-playonce="0" component-bkcolor="16777215" component-absref="0" component-previewmode="localpreview" component-overwrite="overwrite" component-startmute="0" component-mouseoverpause="1" anim-stepdelay="30" anim-stepsize="11" anim-imagedelay="4400" anim-mode="start2endloop" slides-count="6" slide1-image="a10a.jpg" slide1-imagesaveas="a10a.jpg" slide1-scaling="noscalecenter" slide1-descaftereffect="0" slide1-audio="(None)" slide1-url="http://www.earlychildhood-curr.com/handpuppets.html" slide1-target slide1-status slide1-effect="fromtop" slide1-text="Put your text here" slide2-image="b11a.jpg" slide2-imagesaveas="b11a.jpg" slide2-scaling="noscalecenter" slide2-descaftereffect="0" slide2-audio="(None)" slide2-url="http://www.earlychildhood-curr.com/handpuppets.html" slide2-target slide2-status slide2-effect="fromtop" slide2-text="Put your text here" slide3-image="c12a.jpg" slide3-imagesaveas="c12a.jpg" slide3-scaling="noscalecenter" slide3-descaftereffect="0" slide3-audio="(None)" slide3-url="http://www.earlychildhood-curr.com/handpuppets.html" slide3-target slide3-status slide3-effect="fromtop" slide3-text="Put your text here" slide4-image="d13a.jpg" slide4-imagesaveas="d13a.jpg" slide4-scaling="noscalecenter" slide4-descaftereffect="0" slide4-audio="(None)" slide4-url="http://www.earlychildhood-curr.com/handpuppets.html" slide4-target slide4-status slide4-effect="fromtop" slide4-text="Put your text here" slide5-image="e14a.jpg" slide5-imagesaveas="e14a.jpg" slide5-scaling="noscalecenter" slide5-descaftereffect="0" slide5-audio="(None)" slide5-url slide5-target slide5-status slide5-effect="fromtop" slide5-text="Put your text here" slide6-image="f15a.jpg" slide6-imagesaveas="f15a.jpg" slide6-scaling="noscalecenter" slide6-descaftereffect="0" slide6-audio="(None)" slide6-url="http://www.earlychildhood-curr.com/handpuppets.html" slide6-target slide6-status slide6-effect="fromtop" slide6-text="Put your text here" startspan --><script language=JavaScript src="./_frontlook/SlideShow.js"></script>
<script language=JavaScript>
	if ( document.layers )
	{
		function OnLoadSS20070408175130 ()
		{
			if ( OldOnLoadSS20070408175130 != "" ) OldOnLoadSS20070408175130 ();
			widthCheckSS20070408175130 = window.innerWidth;
			heightCheckSS20070408175130 = window.innerHeight;
			SS20070408175130.CreateLayers ();
			SS20070408175130.StartSlideShow ();
		}
		function OnResizeSS20070408175130 ()
		{
			if ( OldOnResizeSS20070408175130 != "" ) OldOnResizeSS20070408175130 ();
			if ( widthCheckSS20070408175130 != window.innerWidth || heightCheckSS20070408175130 != window.innerHeight )
				document.location.href = document.location.href;
		}

		var widthCheckSS20070408175130;
		var heightCheckSS20070408175130;
		var OldOnLoadSS20070408175130 = (window.onload) ? window.onload : "";
		var OldOnResizeSS20070408175130 = ( window.onresize ) ? window.onresize : "";
		window.onload = OnLoadSS20070408175130;
		window.onresize = OnResizeSS20070408175130;
	}
	var SS20070408175130 = new SlideShowObj ( "SS20070408175130", 
		180, 185, "Center", 0, 0, 0, 0, 
		185, 10, 0,
		30, 11, 4400, 1, 
		"", "", "#FFFFFF", 0, "", 
		"./_frontlook/a10a.jpg*173*179##FS####FS##http://www.earlychildhood-curr.com/handpuppets.html##FS####FS####FS##4##FS####FS####FS##0##FS##1##RS##./_frontlook/b11a.jpg*168*176##FS####FS##http://www.earlychildhood-curr.com/handpuppets.html##FS####FS####FS##4##FS####FS####FS##0##FS##1##RS##./_frontlook/c12a.jpg*172*171##FS####FS##http://www.earlychildhood-curr.com/handpuppets.html##FS####FS####FS##4##FS####FS####FS##0##FS##1##RS##./_frontlook/d13a.jpg*165*178##FS####FS##http://www.earlychildhood-curr.com/handpuppets.html##FS####FS####FS##4##FS####FS####FS##0##FS##1##RS##./_frontlook/e14a.jpg*158*168##FS####FS####FS####FS####FS##4##FS####FS####FS##0##FS##1##RS##./_frontlook/f15a.jpg*156*171##FS####FS##http://www.earlychildhood-curr.com/handpuppets.html##FS####FS####FS##4##FS####FS####FS##0##FS##1##RS##", 0, 1);
	SS20070408175130.GenerateHTML ();
	if(!document.layers) SS20070408175130.StartSlideShow ();
</script><!--webbot bot="FLCFX_SlideShow" endspan i-checksum="39240" -->
        </div>
        </td>
      </tr>
      <tr>
        <td valign="top" colspan="2">
        <p align="center"><b><font face="Hobo Medium" color="#0000FF" size="5">
        <a href="security.html"><font color="#AE1A1A">Attention:&nbsp; All 
        products ordered from this website are absolutely secure.&nbsp; Click 
        here for more information.</font></a></font></b></td>
      </tr>
      <tr>
        <td valign="top" colspan="2">
        <p align="center"><b><font color="#AE1A1A" size="4">&nbsp;</font></b><img border="0" src="WELCOME.gif" width="467" height="88" alt="Welcome to Early Childhood Curriclum!"></p>
        <p align="left"><font size="4">We're a company that specializes in curriculum, educational aids for 
        birth to 6 years old, and furniture for babies, birth through 36 
        months.&nbsp; We are a perfect fit for Bible Classes, Home Schools, and 
        Day Care.&nbsp; For more information, please feel free to contact us:</font></p>
  <p align="center"><b><font size="4">Toll free:&nbsp; 1-800-658-9247</font></b></p>
  <p align="center"><b><font size="4">Email:&nbsp; <a href="mailto:orders@earlychildhood-curr.com">
  orders@earlychildhood-curr.com</a>
  </font></b></p>
        </td>
      </tr>
      <tr>
        <td valign="top" colspan="2">
        <hr>
        <p align="left"><font size="4"><font color="#CC3300">WE'RE HAPPY TO TELL YOU THAT WE NOW 
        ACCEPT </font> <u><font color="#CC3300">PAYPAL</font></u><font color="#CC3300">&nbsp; YOU CAN 
        REGISTER WITH PAYPAL AT CHECKOUT, SET UP YOUR </font> <u>
        <font color="#CC3300">AMERICAN EXPRESS</font></u><font color="#CC3300"> AND
        <u>DISCOVER CARDS</u>&nbsp; 
        WITH PAYPAL, THEN PAY WITH PAYPAL.&nbsp;</font>&nbsp; In the past, we have not 
        accepted American Express and Discover cards; we now have a solution for 
        that with PayPal, the most secure, internet financial company in 
        existence.&nbsp;&nbsp;
        And, 
        as always, we still accept <u><font color="#AE1A1A">VISA</font></u> 
        and <u><font color="#AE1A1A">MASTERCARD</font></u>.</font></td>
      </tr>
      </table>
  </div><table border="0" cellpadding="10" cellspacing="0" align="center"><tr><!-- PayPal Logo --><!-- PayPal Logo --><!-- PayPal Logo -->
  </table>
  <!-- PayPal Logo --></tr></table>
<p align="center"><b><a href="#top">Top of the page</a></b></p>
<hr color="#999999" width="60%" size="4">
<!-- PayPal Logo -->
  <b>
</h3>
</b>

</td></tr></table></td></tr></table></body>

</html>