/*********************************************** * Memory Ticker script- © Dynamic Drive DHTML code library (www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code ***********************************************/ //configure tickercontents[] to set the messges you wish be displayed (HTML codes accepted) //Backslash any apostrophes within your text (ie: I'm the king of the world!) var tickercontents=new Array() tickercontents[0]='" I would like to thank you for giving me the support and opportunity to gain excellent employment through your website. Very much appreciative! Thanks again and kind regards, Andrea "

- Andrea. July 2008
' tickercontents[1]='" Thanks for your service. We did find a great person through your website to help us take care of our little person "

- Anna. July 2008
' tickercontents[2]='" I have recommended your company to several people in the last year as I thought it was a great concept which worked well for me "

- Amanda. June 2008
' tickercontents[3]='" Thankyou for your help in finding me my dream job. I am very lucky to have found a lovely family close to home and I am looking forward to working for them for the next few years "

- Clair. June 2008
' tickercontents[4]='" Found a fantastic girl who I'm very happy with thru your site. "

- Danielle. June 2008.
' tickercontents[5]='" I have found a nanny through your service, and wish to thank you for it. "

- Saurabh. Jan 2008
' tickercontents[6]='" I received some fantastic applications, and was able to find a great carer for my girls within weeks of joining. I'd like to thank all the applicants and 'we need a nanny'. "

- Vanessa. August 2008
' tickercontents[7]='" I found a great nanny through WeNeedaNanny "

- Carla. July 2008
' tickercontents[8]='" Our position has now been filled. Have had a fantastic response with really qualified ladies so thank you. "

- Virginia. June 2008
' tickercontents[9]='" Hi, I found your service to be very good and I found a nanny within 2 weeks and made some other contacts for babysitting. I found it was most productive to email nannies as well as putting an advert on your site as this meant I had morechoice. Thanks "

- Louise. July 2008
' tickercontents[10]='" I have found a lovely nanny and very quickly through your site "

- Alexis. July 2008
' tickercontents[11]='" I registered with We Need a Nanny as I needed a nanny for my son. I had many replies and found a nanny within two weeks from one of the nannies registered on your site. I'm very happy with the service provided."

- Michelle. June 2008
' tickercontents[12]='" This is a fantastic service. It is great value for money and makes the whole process very simple. We received a really good response from local nannies "

- Jennifer. August 2008
' tickercontents[13]='" This website is awesome. I highly recommend it. I have found a job through this site but remain on it as I wish to fill my days as the job I have is afternoons. It is a great site and I have only experienced happy honest people through it. I am very cautious with honesty and trustworthy in people but this site has been all positive. Regards and Thanks "

- Janet.. August 2008
' tickercontents[14]='" I would like to thank you for the service you provided and the opportunities you gave me "

- Brenda. August 2008
' tickercontents[15]='" Great applicants found via your site "

- Jacqui. July 2008
' tickercontents[16]='" We found a sutable nanny from your service within a week of joining and she has been with us now for 7 months and we are both mutally very happy ! I have recommended your service to both clients and friends and would not hesitate to use you again when the needarises. "

- Sara - ( Erskineville ) - NSW. Fabruary 2010
' tickercontents[17]='" Just a quick email to say how helpful yourwebsite has been - thank you. We had to look for a new nanny quite quickly and, having never used an online database, I was a little hesitant at first. However, we received a massive amount of interestfor the position, your site was easy to use, reliable and reputable. We have now employed a lovely girl to join our family as nanny for our 9 1/2 mnth son. Good on you and thank you again. Susan :) "

- Susan. June 2008
' var persistlastviewedmsg=1 //should messages' order persist after users navigate away (1=yes, 0=no)? var persistmsgbehavior="onload" //set to "onload" or "onclick". //configure the below variable to determine the delay between ticking of messages (in miliseconds): var tickdelay=15000 ////Do not edit pass this line//////////////// var divonclick=(persistlastviewedmsg && persistmsgbehavior=="onclick")? 'onClick="savelastmsg()" ' : '' var currentmessage=0 function changetickercontent(){ if (crosstick.filters && crosstick.filters.length>0) crosstick.filters[0].Apply() crosstick.innerHTML=tickercontents[currentmessage] if (crosstick.filters && crosstick.filters.length>0) crosstick.filters[0].Play() currentmessage=(currentmessage==tickercontents.length-1)? currentmessage=0 : currentmessage+1 var filterduration=(crosstick.filters&&crosstick.filters.length>0)? crosstick.filters[0].duration*1000 : 0 setTimeout("changetickercontent()",tickdelay+filterduration) } function beginticker(){ if (persistlastviewedmsg && get_cookie("lastmsgnum")!="") revivelastmsg() crosstick=document.getElementById? document.getElementById("memoryticker") : document.all.memoryticker changetickercontent() } function get_cookie(Name) { var search = Name + "=" var returnvalue = "" if (document.cookie.length > 0) { offset = document.cookie.indexOf(search) if (offset != -1) { offset += search.length end = document.cookie.indexOf(";", offset) if (end == -1) end = document.cookie.length; returnvalue=unescape(document.cookie.substring(offset, end)) } } return returnvalue; } function savelastmsg(){ document.cookie="lastmsgnum="+currentmessage } function revivelastmsg(){ currentmessage=parseInt(get_cookie("lastmsgnum")) currentmessage=(currentmessage==0)? tickercontents.length-1 : currentmessage-1 } if (persistlastviewedmsg && persistmsgbehavior=="onload") window.onunload=savelastmsg if (document.all||document.getElementById) document.write('
') if (window.addEventListener) window.addEventListener("load", beginticker, false) else if (window.attachEvent) window.attachEvent("onload", beginticker) else if (document.all || document.getElementById) window.onload=beginticker