//Translucent scroller- By Dynamic Drive
//For full source code and more DHTML scripts, visit http://www.dynamicdrive.com
//This credit MUST stay intact for use

var scroller_width='400px'
var scroller_height='60px'
var bgcolor=''
var pause=4000 //SET PAUSE BETWEEN SLIDE (3000=3 seconds)

var scrollercontent=new Array()
//Define scroller contents. Extend or contract array as needed
scrollercontent[0]='"[Lauren] You are so special and your advice is PERFECT!"<br>—Kathy K., Chicago'
scrollercontent[1]='"Your words and advice made me feel proud of my feelings and gave me faith. You\'ve inspired me to stick to my guns and remain grounded and I wanted to thank you for that."—Jill T., Manhattan'
scrollercontent[2]='"I have known Lauren for many years, and she has always been a source of support and inspiration to me. I admire the way she can articulate her thoughts so easily."—A. Innes'
scrollercontent[3]='"I always say that taking cooking/life lessons with you was one of best things that I\'ve ever done. I continue to cook your wonderful food and receive so many compliments on it."—Erin I., Larchmont, New York'
scrollercontent[4]='"[Lauren\'s] philosophy of nurturing family and friends through cooking really resonated with me. I would highly recommend her book for anyone who wants to lavish love and delicious food on those their loved ones."—SM, Maryland'
scrollercontent[5]='"Lauren, I just wanted to tell you how much your cookbooks have become entwined into my family get-togethers and celebrations. I have loved your cookbooks for years. Thank you!!"—S. Ingram, Cleveland'
scrollercontent[6]='"Lauren Groveman is the culinary creator/advisor for the new Millennium."<br>—Wolfpower@prodigy,com, Golden Bridge, NY'
scrollercontent[7]='"Somehow [Lauren] she does it all with every piece of information a busy neophyte appreciates as well as the sophistication one aspires to for impressive meals and desserts of every kind."-J. Fitzgerald, California'
scrollercontent[8]='"I think of Lauren as a perennial student, going outside of her comfort zone, challenging herself, striving for the knowledge of life."—A. Innes'
scrollercontent[9]='"Cooking is an art-creative, warm, loving and meant to be shared. Lauren\'s book is a treasure-I highly recommend it and wish I could give it a double five stars."<br>—vptara, Bethlehem, PA'
scrollercontent[10]='"Lauren\'s book has reminded me what life and family should be about."<br>-Larry, NYC'
scrollercontent[11]='"Lauren Groveman has done it again! She has given us a book of rare quality loaded with the most fantastically delicious recipes and practical cooking tips."<br>—Carmen C., NYC'
scrollercontent[12]='"I often wish I could keep her in my back pocket and pull her out at difficult moments. She just always seems to have the right answers or the right questions to help me on my journey towards healing."—A. Innes'
scrollercontent[13]='"Personally, after being a real fan of Ms. Groveman\'s for years... I think the world would be a better place if more people were like her and adopted her loving, giving ways."-A Customer'
scrollercontent[14]='"After three sessions with Lauren she has motivated me to focus on my power to make better choices. Having Lauren Groveman as a Life Coach is a great investment."-Jackie O, Soldotna, AK'
scrollercontent[15]='"Lauren lives in the moment... and her guiding words of wisdom come from a loving place... you can feel it."—A. Innes'
scrollercontent[16]='"I have made just about all of the recipes in the book over the years and they are always terrific. I wanted to thank you for such a wonderful resource after recently making the Maple Glazed Brisket. It was heaven!"—Marcia Price'

////NO need to edit beyond here/////////////

var ie4=document.all
var dom=document.getElementById&&navigator.userAgent.indexOf("Opera")==-1

if (ie4||dom)
document.write('<div style="position:relative;width:'+scroller_width+';height:'+scroller_height+';overflow:hidden"><div id="canvas0" style="top:1px;left:1px;position:absolute;background:url(/i/back.head.jpg) repeat;background-color:'+bgcolor+';width:'+scroller_width+';height:'+scroller_height+';top:'+scroller_height+';filter:alpha(opacity=20);-moz-opacity:0.2;"></div><div id="canvas1" style="top:1px;left:1px;position:absolute;background:url(/i/back.head.jpg) repeat;background-color:'+bgcolor+';width:'+scroller_width+';height:'+scroller_height+';top:'+scroller_height+';filter:alpha(opacity=20);-moz-opacity:0.2;"></div></div>')
else if (document.layers){
document.write('<ilayer id=tickernsmain visibility=hide width='+scroller_width+' height='+scroller_height+' bgColor='+bgcolor+'><layer id=tickernssub width='+scroller_width+' height='+scroller_height+' left=0 top=0>'+scrollercontent[0]+'</layer></ilayer>')
}

var curpos=scroller_height*(1)
var degree=6
var curcanvas="canvas0"
var curindex=0
var nextindex=1

function moveslide(){
if (curpos>0){
curpos=Math.max(curpos-degree,0)
tempobj.style.top=curpos+"px"
}
else{
clearInterval(dropslide)
if (crossobj.filters)
crossobj.filters.alpha.opacity=100
else if (crossobj.style.MozOpacity)
crossobj.style.MozOpacity=1
nextcanvas=(curcanvas=="canvas0")? "canvas0" : "canvas1"
tempobj=ie4? eval("document.all."+nextcanvas) : document.getElementById(nextcanvas)
tempobj.innerHTML=scrollercontent[curindex]
nextindex=(nextindex<scrollercontent.length-1)? nextindex+1 : 0
setTimeout("rotateslide()",pause)
}
}

function rotateslide(){
if (ie4||dom){
resetit(curcanvas)
crossobj=tempobj=ie4? eval("document.all."+curcanvas) : document.getElementById(curcanvas)
crossobj.style.zIndex++
if (crossobj.filters)
document.all.canvas0.filters.alpha.opacity=document.all.canvas1.filters.alpha.opacity=20
else if (crossobj.style.MozOpacity)
document.getElementById("canvas0").style.MozOpacity=document.getElementById("canvas1").style.MozOpacity=0.2
var temp='setInterval("moveslide()",100)'
dropslide=eval(temp)
curcanvas=(curcanvas=="canvas0")? "canvas1" : "canvas0"
}
else if (document.layers){
crossobj.document.write(scrollercontent[curindex])
crossobj.document.close()
}
curindex=(curindex<scrollercontent.length-1)? curindex+1 : 0
}

function resetit(what){
curpos=parseInt(scroller_height)*(1)
var crossobj=ie4? eval("document.all."+what) : document.getElementById(what)
crossobj.style.top=curpos+"px"
}

function startit(){
crossobj=ie4? eval("document.all."+curcanvas) : dom? document.getElementById(curcanvas) : document.tickernsmain.document.tickernssub
if (ie4||dom){
crossobj.innerHTML=scrollercontent[curindex]
rotateslide()
}
else{
document.tickernsmain.visibility='show'
curindex++
setInterval("rotateslide()",pause)
}
}

if (ie4||dom||document.layers)
window.onload=startit