/***********************************************************************************
*	(c) Ger Versluis 2000 version 5.41 24 December 2001	          *
*	For info write to menus@burmees.nl		          *
*	You may remove all comments for faster loading	          *		
***********************************************************************************/


 	// Scrolling text string.
	var strText="BELLI, WEIL, GROZBEAN & DAVIS LLP - NEWS FLASH!!  DOUGLAS J. DAVIS wins 12 person jury award in common law marriage case which sets the standard for common law marriage in Georgia.*** DOUGLAS J. DAVIS obtains an extremely rare Judgment of Annulment in Fulton County, Georgia in a case of foreign national wife fraudulently using marriage to obtain visa for entry into United States.*** High level American Diplomat receives bitterly contested award of custody and ability to permanently relocate 3 children with him to Diplomatic Assignment in South America!*** DOUGLAS J. DAVIS successfully protects former fiance of NBA Superstar to retain possession of her engagement ring.*** MELANIE C. EYRE, FRANK J. MARQUEZ and CINDIE GREENBAUM ALTER join the Belli litigation team.*** Visit BWGD on RadioSandySprings.com, AMERICA'S WEB RADIO, 1620 AM on Thursdays 6:00 P.M. - 7:00 P.M.*** DOUGLAS J. DAVIS wins rare termination of parental rights case in Cobb County, Georgia.*** MELANIE C. EYRE successfully resolved wrongful death suit against National Nursing Home chain favorably to victims family.*** DOUGLAS J. DAVIS obtains favorable results for girlfriend who receives custody of son, generous child support, private school education for child and Mercedes Benz from NFL Superstar.*** MELANIE C. EYRE resolved traumatic injury suit where vehicle jumped the curb and smashed through window and injured patron of nationally known coffee chain.*** KAMILAH CLARK successfully defends against a strenuous effort to severely dilute a concerned father's parental access to children.*** Criminal Defense Attorney FRANK J. MARQUEZ obtained NOT GUILTY jury verdicts on charges of Battery On A Police Officer, Obstruction and Battery on behalf of a client who had been charged with a courtroom assault upon a deputy sheriff after a hard fought trial in the State Court of Dekalb County.*** BWGD REPRESENTS HOMEOWNERS FOR DEFENSE AND PREVENTION OF WRONGFUL FORECLOSURES.*** WE ACCEPT MASTERCARD, VISA, AMERICAN EXPRESS & DISCOVER.*** (770)993-3300 ***"; 
	// Length of the text
	var intText=strText.length; 
	// Speed of the scroll 
	var intSpeed=125; 
	// Width of the scrolling area.
	var intWidth=200; 
	var intPos=1-intWidth;
         function scroll()
         {
           // Initialize the string to be printed.
           intPos++;
           var strScroll="";
           // Move to the right in the string.
           if (intPos==intText)
           {
             // Start over if the string is done.
             intPos=1-intWidth;
           }
           // Scrolling
           if (intPos<0)
           {
           // Add spaces to beginning if necessary.
			 for (var i=1; i<=Math.abs(intPos); i++)
             {
               strScroll=strScroll+" ";
             }
             strScroll=strScroll+strText.substring(0, intWidth-i+1);
           }
           else
           {
           strScroll=strScroll+strText.substring(intPos,intWidth+intPos);
           }
           window.status = strScroll;
           setTimeout("scroll()", intSpeed);
         }

