// JavaScript Document
								var boxHeight = document.getElementById('highlights').style.height.replace('px','');
								
								document.getElementById('highlights').innerHTML = document.getElementById('highlights').innerHTML + document.getElementById('highlights').innerHTML; //add a second copy so we can scroll down to the wrap point
								var stopScroll = 0
								var x
								function scrollMe() {
									var repeatHeight = (document.getElementById('highlights').scrollHeight/2) - 20; 
									
									clearTimeout(x)
									if(stopScroll==1) {
										return
									}
									document.getElementById('highlights').scrollTop = document.getElementById('highlights').scrollTop+1
									//alert($('highlights').scrollTop+' '+repeatHeight);
									if(document.getElementById('highlights').scrollTop<=repeatHeight) {
										// keep on scrolin'
										x = setTimeout("scrollMe()",40)
									}
									else { //we have hit the wrap point
										document.getElementById('highlights').scrollTop=0
										x = setTimeout("scrollMe()",40)
									}
								}
								x = setTimeout("scrollMe()",1000)
								// start scrolling after one second

