animInit_momsource1 = "";
animControlName_momsource1 = "momsource1";
animCurrentFrame_momsource1 = 0;
animMaxNumFrames_momsource1 = 7;
var animFrameDelay_momsource1 = new Array(0, 5000, 3000, 3000, 3000, 5000, 3000, 6000);
animFadeDelay_momsource1 = .5; 
var animEffect1_momsource1 = new Array('Fade',   'Fade', 'SlideUp', 'SlideUp', 'SlideUp', 'Fade', 'Fade', 'Fade');
var animEffect2_momsource1 = new Array('Appear', 'Appear', 'SlideDown', 'SlideDown', 'SlideDown', 'Appear', 'Appear', 'Appear');
var animContent_momsource1 = new Array('',
   '<h1   style="font-weight: normal; font-family: Helvetica,Arial,sans-serif; color: rgb(135, 19, 4);"><big>Do  You <span style="color: rgb(36, 72, 72);">Dream</span>  Of Working From Home?</big></h1>',
'<h1   style="font-family: Helvetica,Arial,sans-serif; color: rgb(135, 19, 4);">Are  You Tired Of The Empty Promises....</h1>',
'<h1 style="font-family: Segoe Script; color: rgb(153, 51, 0);"><br>  <span   style="color: rgb(135, 19, 4); font-family: Helvetica,Arial,sans-serif;">...Wasted  Money....</span></h1>',
'<h1 style="color: rgb(153, 51, 0); font-family: Helvetica,Arial,sans-serif;"><br>  <span style="color: rgb(135, 19, 4);">...Feeling Like No  One Is Offering You Any <span style="color: rgb(46, 93, 93);">REAL</span>  Help...</span></h1>',
'<h1 style="font-family: Segoe Script; color: rgb(153, 51, 0);"><br>  <big style="font-style: italic; color: rgb(135, 19, 4);"><span   style="font-family: Helvetica,Arial,sans-serif;">You <span   style="background-color: rgb(255, 255, 255); color: rgb(43, 87, 87);">CAN</span>  Work From Home!</span></big> </h1>',
'<h1 style="font-family: Segoe Script; color: rgb(153, 51, 0);">  <big style="color: rgb(43, 87, 87);">Help From One Mom Who  Is Doing It...</big></h1>',
'<h1 style="font-family: Segoe Script; color: rgb(153, 51, 0);">  <big style="color: rgb(43, 87, 87);">To All Moms  Who Want To!</big></h1>');

animIE_momsource1 = (Prototype.Browser.IE);
animLoop_momsource1 = true;
   
document.write ('<div style="text-align: center; width: 700px; height: 200px; clip: auto; overflow: hidden;"><span id="momsource1" ');
if (animInit_momsource1 != "")
   document.write (animInit_momsource1 + '="animCurrentFrame_momsource1=1; selectAnim_momsource1();">' + animContent_momsource1[1]);
else
	document.write ('>');
document.write ('</span></div>');

if (animInit_momsource1 == "")
   selectAnim_momsource1();   
   
function selectAnim_momsource1() {
   if (animCurrentFrame_momsource1 < animMaxNumFrames_momsource1 || animLoop_momsource1) {
      var sEffect = animEffect1_momsource1[animCurrentFrame_momsource1];
      if (animIE_momsource1 && sEffect == "Shrink") sEffect = "Fade";  // IE doesn't like "Shrink"
      if (sEffect != "None")
   	   var myresult = eval('new Effect.' + sEffect + '(animControlName_momsource1, {duration:animFadeDelay_momsource1});');
      animCurrentFrame_momsource1 += 1;
      if (animCurrentFrame_momsource1 > animMaxNumFrames_momsource1) animCurrentFrame_momsource1 = 1;
      window.setTimeout('changeAnim_momsource1()',animFadeDelay_momsource1 * 1000);
   }
}

function changeAnim_momsource1() {
   document.getElementById(animControlName_momsource1).innerHTML = animContent_momsource1[animCurrentFrame_momsource1];
   var sEffect = animEffect2_momsource1[animCurrentFrame_momsource1];
   if (sEffect != "None")
	   var myresult = eval('new Effect.' + sEffect + '(animControlName_momsource1, {duration:animFadeDelay_momsource1});');
   window.setTimeout('selectAnim_momsource1()',animFrameDelay_momsource1[animCurrentFrame_momsource1]);
}
