//SET SCROLLER APPEARANCE AND MESSAGES
if (screen.width > 800){
	var myScroller1 = new Scroller(0, 0, 236, 140, 1, 5); //(xpos, ypos, width, height, border, padding)
	myScroller1.setFont("Arial,Verdana,Helvetica", 2);
}else{
	var myScroller1 = new Scroller(0, 0, 190, 130, 1, 5); //(xpos, ypos, width, height, border, padding)
	myScroller1.setFont("Arial,Verdana,Helvetica", 1);
}
myScroller1.setColors("#666666","","#ffffff"); //(fgcolor, bgcolor, bdcolor)
myScroller1.addItem("<b>CLIENT: Jiffy Lube</b><br>Hired Braun to provide appraisals of  their special  purpose facilities throughout the West Coast. The valuation was used to support a change in tax basis.");
myScroller1.addItem("<b>CLIENT: A Nationwide Shopping Center Developer</b><br>Hired Braun to provide appraisals of their regional shopping centers.  Included tenants were  Office Max, Fred Meyer, Dollar General, Borders, PF Changs, Quizno's, United Artists and many other fine retailers.");
myScroller1.addItem("<b>CLIENT: Bankruptcy Trustee</b><br>Hired Braun to provide appraisals of major distribution facilities nationwide for the purpose of understanding 'Quick Sale Value'. Braun would be hired to conduct Public Auctions of these facilities as well.");
myScroller1.addItem("<b>CLIENT: School</b><br>Hired Braun to provide an appraisal of a special purpose facility for the purpose of understanding the current market value. This facility was highly modified, therefore, comparables were quite difficult to obtain. Braun was able to support the valuation with indepth research.");
myScroller1.addItem("<b>CLIENT: Comerica Bank</b><br>Hired Braun to provide an appraisal of the assets of a major furniture manufacturer. The appraisals are of the machinery & equipment as well as the real property for the purposes of obtaining a forced liquidation value of the M & E and “Quick Sale Value” of the real property.");
myScroller1.addItem("<b>CLIENT: GE Capital</b><br>Hired Braun to appraise one of the largest grain logistics companies in Canada.  Braun valued the real estate, machinery & equipment (included specialized port terminal facilities, grain processing facilities, and retail locations) at over $350 million.");
myScroller1.addItem("<b>CLIENT: Shopping Center Owner</b><br>Hired Braun to prepare a cost segregation study on their $20 million property.  Braun valued the land first and increased the basis for depreciation by $800,000.  We then conducted a cost segregation study that allowed the client to accelerate the depreciation on the shopping center and generated savings of over $735,000.");



//SET SCROLLER PAUSE
myScroller1.setPause(2500); //set pause beteen msgs, in milliseconds

function runmikescroll() {

  var layer;
  var mikex, mikey;

  // Locate placeholder layer so we can use it to position the scrollers.

  layer = getLayer("placeholder");
  mikex = getPageLeft(layer);
  mikey = getPageTop(layer);

  // Create the first scroller and position it.

  myScroller1.create();
  myScroller1.hide();
  myScroller1.moveTo(mikex, mikey);
  myScroller1.setzIndex(100);
  myScroller1.show();
}

window.onload=runmikescroll
