<!--
// Cross browser Marquee II- © Dynamic Drive (www.dynamicdrive.com)

	var marqueewidth="169px"  // Specify the marquee's width (in pixels)
	var marqueeheight="150px" // Specify the marquee's height
	var marqueespeed=1        // Specify the marquee's marquee speed (larger is faster 1-10)
	var pauseit=1             // Pause marquee onMousever (0=no. 1=yes)?

// Specify the marquee's content
// Keep all content on ONE line, and backslash any single quotations (ie: that\'s great):

var marqueecontent='<p><font color="#de0000"><b><i>Testimonials</i></b></font><p><br /><b>Jewelry Judge<br /> Ben Gordon</b><br /><br />I wanted to drop you a quick note to tell you how pleased I am with your service. I am amazed at the amount of personal attention that I received whtile at your office.  It is a great feeling anytime a person is able to deal with a business that genuinely cares about its customers.  I will recommend you in the future because of your ability to make a customer feel comfortable. Whatever it is that you are doing - please keep doing it the same way.<br><br><b>Jayland K.</b><br /><br />Thanks for your wonderful work today while appraising Ashley’s engagement ring.  You turned, what I thought would be a boring exercise into something exciting, fun and enjoyable!<br /><b>&nbsp;- Roger R</b><br /><br />Thank You for your time. It was an interesting educational experience. I appreciate your detailed work.<br /><br />Many Thanks<br /><b>&nbsp;- Bryan</b><br />&nbsp;&nbsp;<br />Thank you very much for your time and assistance with the appraisal! I truly enjoyed my time with you especially learning about the stones and the different ways you measure each one!<br /><br />I was intrigued that you had heard of the "Crown of Light" diamond by DI!  I really appreciated you sharing with me a copy of the article from your journal. I look forward to reading it and learning even more about the stones.<br /><br />Should i find other "treasures", I will be sure and bring them to you for inspection and appraisal.<b><br /><br />&nbsp;- Leslie Morrison</b><br /><br />Hello Ben! I just wanted to tell you that I am very happy with your service yesterday and am highly recommending you to all of my friends and family!  You are very careful and dedicated to your research/findings and i truly appreciate the detail work you did<b><br /><br />&nbsp;- Marie Dang</b>'

marqueespeed=(document.all)? marqueespeed : Math.max(1, marqueespeed-1) //slow speed down by 1 for NS
	var copyspeed=marqueespeed
	var pausespeed=(pauseit==0)? copyspeed: 0
	var iedom=document.all||document.getElementById
	var actualheight=''
	var cross_marquee, ns_marquee

function populate(){
	if (iedom){
		cross_marquee=document.getElementById? document.getElementById("iemarquee") : document.all.iemarquee
		cross_marquee.style.top=parseInt(marqueeheight)+8+"px"
		cross_marquee.innerHTML=marqueecontent
		actualheight=cross_marquee.offsetHeight
		}
	else if (document.layers){
		ns_marquee=document.ns_marquee.document.ns_marquee2
		ns_marquee.top=parseInt(marqueeheight)+8
		ns_marquee.document.write(marqueecontent)
		ns_marquee.document.close()
		actualheight=ns_marquee.document.height
		}
	lefttime=setInterval("scrollmarquee()",40)
		}
	window.onload=populate

function scrollmarquee(){
	if (iedom){
	if (parseInt(cross_marquee.style.top)>(actualheight*(-1)+8))
		cross_marquee.style.top=parseInt(cross_marquee.style.top)-copyspeed+"px"
	else
		cross_marquee.style.top=parseInt(marqueeheight)+8+"px"
		}
	else if (document.layers){
		if (ns_marquee.top>(actualheight*(-1)+8))
		ns_marquee.top-=copyspeed
	else
		ns_marquee.top=parseInt(marqueeheight)+8
		}
		}
	if (iedom||document.layers){
		with (document){
	if (iedom){
		write('<div style="position:relative;width:'+marqueewidth+';height:'+marqueeheight+';overflow:hidden" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed">')
		write('<div id="iemarquee" style="position:absolute;left:0px;top:0px;width:100%;">')
		write('</div></div>')
		}
	else if (document.layers){
		write('<ilayer width='+marqueewidth+' height='+marqueeheight+' name="ns_marquee">')
		write('<layer name="ns_marquee2" width='+marqueewidth+' height='+marqueeheight+' left=0 top=0 onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed"></layer>')
		write('</ilayer>')
		}
		}
	}
-->