text=new Array()
text[text.length]="<p class='style5' align='left'><font color='#000055'>Jolie G. Weinberg, Marni B. Schwartz and Sarah Novak Nesbitt were listed in Baltimore City Paper's Best of Baltimore Collaborative Lawyers.</font> </p>"
text[text.length]="<p class='style5' align='left'><font color='#000055'>Welcome to Joe M. Maher, our newest associate! Joe has joined our firm after clerking for the Honorable Louis A. Becker on the Circuit Court for Howard County. We're excited to have Joe join our team. &nbsp;</font> </p>"
text[text.length]="<p class='style5' align='left'><font color='#000055'>Amos M. Whitney currently serves as the Membership Chair for the Honorable James MacGill American Inns of Court.</font></p>"
text[text.length]="<p class='style5' align='left'><font color='#000055'>Marni B. Schwartz was named a Maryland Super Lawyer 2009, 2010 and 2011 and was listed as a Top Attorney in Maryland in the Baltimore Magazine.</font></p>"
text[text.length]="<p class='style5' align='left'><font color='#000055'>Jolie G. Weinberg was named a Maryland Super Lawyer for 2010 and 2011 and was listed as a Top Attorney in Maryland in the Baltimore Magazine.</font></p>"
text[text.length]="<p class='style5' align='left'><font color='#000055'>Tracey L. Perrick attended the annual \"Family Law Update\" offered by the MSBA, which covered new developments in legislation, case law, and court rules. She has shared the information that was covered with all of us at Weinberg & Schwartz to be sure that we all have the most up to date information for our clients.</font> </p>"
text[text.length]="<p class='style5' align='left'><font color='#000055'>Sarah Novak Nesbitt has joined the Howard County chapter of the Women’s Bar Association Board as an At-Large Member! Sarah Novak Nesbitt has become involved with this organization over the past year, and she is excited to have a position on the board.</font></p>"
text[text.length]="<p class='style5' align='left'><font color='#000055'>We had a great time running (and walking) to support the National Family Resiliency Center on Saturday! Our entire firm participated, along with several family members and friends. Tracey L. Perrick, Amos M. Whitney, and Jolie G. Weinberg placed in their divisions.</font></p>"
text[text.length]="<p class='style5' align='left'><font color='#000055'>Jolie G. Weinberg and Sarah Novak Nesbitt recently attended a planning meeting for the Women’s Bar Association. They volunteered to help with outreach and membership.</font></p>"
text[text.length]="<p class='style5' align='left'><font color='#000055'>The Honorable Diane O. Leasure is retiring this fall. Numerous groups and individuals are working to plan a reception to honor Judge Leasure’s dedication to the law, which will be held on October 25, 2011 at 6:00 p.m. in Columbia.</font></p>"
text[text.length]="<p class='style5' align='left'><font color='#000055'>The early count is in, and the DVC raised almost $30,000 at the 2011 Domestic Violence Center's Hope Bowl.</font></p>"
text[text.length]="<p class='style5' align='left'><font color='#000055'>Jolie G. Weinberg joined many Maryland lawyers for the annual Maryland State Bar Association conference in Ocean City. Jolie G. Weinberg attended seminars on \"Drafting in Mediation\" and \"Limited Representation and Other Ethical Issues\".</font></p>"
text[text.length]="<p class='style5' align='left'><font color='#000055'>Marni B. Schwartz and Jolie G. Weinberg will be attending the 14th annual International Academy of Collaborative Practice Forum. &nbsp;</font> </p>"
text[text.length]="<p class='style5' align='left'><font color='#000055'>Jolie G. Weinberg serves as President of the Maryland Collaborative Professional Council which serves as an umbrella organization to oversee and assist the local county collaborative practices.</font></p>"
text[text.length]="<p class='style5' align='left'><font color='#000055'>The International Academy of Collaborative Professionals has invited Jolie G. Weinberg to be a member of the subcommittee that is developing a set of best practices for collaborative cases in which there is a coercive or violent relationship.</font></p>"
text[text.length]="<p class='style5' align='left'><font color='#000055'>Jolie and Marni are frequent speakers at the National Family Resiliency Center's Parenting Seminars.</font></p>"
text[text.length]="<p class='style5' align='left'><font color='#000055'>Marni B. Schwartz has joined the Communication Committee of the Howard County Collaborative Practice groups.</font></p>"
text[text.length]="<p class='style5' align='left'><font color='#000055'>Marni B. Schwartz was appointed to the Domestic Case Management Committee of the Circuit Court for Howard County.&nbsp; Under the leadership of The Honorable Diane O. Leasure, the committee was charged with developing the new family law case management system that is employed by the Court today.</font></p>"
text[text.length]="<p class='style5' align='left'><font color='#000055'>Weinberg &amp; Schwartz established an annual fund for children with the National Family Resiliency Center.</font></p>"
text[text.length]="<p class='style5' align='left'><font color='#000055'>Marni B. Schwartz continues to serve on the Circuit Court for Howard County's Domestic Case Management Committee at the pleasure of the Honorable Diane O. Leasure.</font></p>"
text[text.length]="<p align='center' class='style5'><img style='width:250px;height:100px;' src='../images/SuperLawyers_logo_2010.jpg' alt='No PIC'></p>"


timer=""
speed=35
pause=4000
step= -1
message=0
check=0 // scroll after pause checker
moz=document.getElementById&&!document.all

function init() {
	display_elm=document.getElementById("odiv1")
	cont_elm=document.getElementById("cont")
	pos=parseInt(display_elm.style.top)-(parseInt(display_elm.style.fontSize)/2 ) // original top position
	if(!moz) { document.getElementById("cont").style.clip="rect(0 10px 100px 0)" } //ie size
	else { document.getElementById("cont").style.clip="rect(0 12 102px 0)"  } // include border size for ns
	motion()
}

function motion() {
	clearTimeout(timer)
	posnow=parseInt(display_elm.style.top)
	if(message>=text.length){ message = 0 }

	// stop position, < half container height
	if(check==1&&posnow<parseInt((cont_elm.offsetHeight/2)-parseInt(display_elm.style.fontSize)/2)) {
		clearTimeout(timer);
		check=0
		timer = setTimeout("motion()",pause)
		return
	}

	// fade out
	if (check==0&&posnow<parseInt((cont_elm.offsetHeight/2)-parseInt(display_elm.style.fontSize)/2)) {
		if(!moz){
			display_elm.filters.alpha.Opacity-= 100/((cont_elm.offsetHeight/4)/ -step) 
		} else {
			display_elm.style.opacity = (display_elm.style.opacity-.01);
			display_elm.style.MozOpacity = (display_elm.style.MozOpacity-.01);
			display_elm.style.KhtmlOpacity = (display_elm.style.KhtmlOpacity-.01);
		}
	}

	// next message
	if(posnow<-display_elm.scrollHeight){
		display_elm.style.top=cont_elm.offsetHeight+ "px"
		display_elm.innerHTML=text[message]
		if (!moz) { display_elm.filters.alpha.Opacity=0 } // reset fade
		else { 
			display_elm.style.opacity = 1;
			display_elm.style.MozOpacity = 1;
			display_elm.style.KhtmlOpacity = 1;
		}
		check=1
		message++
		setTimeout("motion()",speed)
	} else { // scroll
		posnow+=step
		display_elm.style.top=posnow + "px"
		if(!moz){ display_elm.filters.alpha.Opacity+= 100/((cont_elm.offsetHeight/2)/ -step) } // fade in
		timer=setTimeout("motion()",speed)
	}
}

setTimeout("init()",1000)
