function startList() {
	if (document.all && document.getElementById) {
		navRoot = document.getElementById("dmenu");
		for (i=0; i < navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}

/*
Live Date Script- 
© Dynamic Drive (www.dynamicdrive.com)
For full source code, installation instructions, 100's more DHTML scripts, and Terms Of Use,
visit http://www.dynamicdrive.com
*/


var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var montharray=new Array("January","February","March","April","May","June","July","August","September","October","November","December")

function getthedate(){
var mydate=new Date()
var year=mydate.getYear()
if (year < 1000)
year+=1900
var day=mydate.getDay()
var month=mydate.getMonth()
var daym=mydate.getDate()
if (daym<10)
daym="0"+daym
var hours=mydate.getHours()
var minutes=mydate.getMinutes()
var seconds=mydate.getSeconds()
var dn="AM"
if (hours>=12)
dn="PM"
if (hours>12){
hours=hours-12
}
if (hours==0)
hours=12
if (minutes<=9)
minutes="0"+minutes
if (seconds<=9)
seconds="0"+seconds
//change font size here
var cdate="<span class='small'><b>"+dayarray[day]+", "+montharray[month]+" "+daym+" "+year+" "+hours+":"+minutes+dn
+"</b></font>"
if (document.all)
document.all.clock.innerHTML=cdate
else if (document.getElementById)
document.getElementById("clock").innerHTML=cdate
else
document.write(cdate)
}
if (!document.all&&!document.getElementById)
getthedate()
function goforit(){
if (document.all||document.getElementById)
setInterval("getthedate()",0)
}


/****************************************************
     Author: Eric King
     Url: http://redrival.com/eak/index.shtml
     This script is free to use as long as this info is left in
     Featured on Dynamic Drive script library (http://www.dynamicdrive.com)
****************************************************/
var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){
if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes';
win=window.open(mypage,myname,settings);}
// -->

function feedback()
{
var quotes=new Array()

//change the quotes if desired. Add/ delete additional quotes as desired.

quotes[0]='"I ordered some bridal shoes from the internet.  My shoes arrived yesterday and are beautiful – a perfect fit and match very well with my wedding dress.  Thank you for your prompt delivery and customer service."<BR><BR><b>Lisa H '

quotes[1]='"The best bridal shoe shop ever!!  Service and price is fantastic.  <br/>You always give excellent service & WOW! the new store looks amazing! "<BR><BR><b>Catherine C'

quotes[2]='"Thanks for all your assistance and I would like to compliment the entire team on such speedy, comprehensive service."<BR><BR><b>Ellen'

quotes[3]='"I just wanted to say a big Thank You!  I got the shoes today (so fast!) and they’re absolutely perfect!  I was worried about buying shoes online in case they didn\’t fit – they fit perfectly. I can’t wait to wear them on my wedding day! "<BR><BR><b>Kylie'

quotes[4]='"At last – Suna Shoes.  The answer to all my prayers.  Thank You.<br/>I knew I would find the right shoe here, lovely service too"<BR><BR><b>HT'

quotes[5]='"The shoes arrived, are stunning and they fit. Thank you for your assistance and prompt service. <br/>I will definitely buy from Suna again."<BR><BR><b>Leah M'

quotes[6]='"Just to let you know that I received my shoes & they are perfect! <br/>Thanks again for all your help & great service. "<BR><BR><b>Donna C, Sweden '


var whichquote=Math.floor(Math.random()*(quotes.length))
document.write(quotes[whichquote])
}
