
var fader = new Array();


var hash = new Array();
function throb(item) {

  // If the hash array does not have an entry for this item, initialise it at 2
  if (!hash[item]) hash[item] = 2;

  // Send a fade command, using the hash array to tell us what parameters we should use
  fader[item].fade(Math.floor(hash[item] / 2), !(hash[item] % 2));

  // Call this function again for this same item after a certain amount of time
  setTimeout(function() { throb(item); }, (hash[item] % 2) ? 2000 : 9000);

  // If we have exceeded the number of messages in this fader, start over again at 2
  if (++hash[item] > fader[item].msg.length * 2 - 1) hash[item] = 2;
}

fader[2] = new fadeObject('fade2', 'ffffff', '808080', 80, 80);


fader[2].msg[1] = "&#8220 ...La Dallman's work is not merely painterly.  Neither idolizing technology or subsuming it behind other interests, these architects integrate technology into the complete architectural project.&#8221 <blockquote><small>-Raymund Ryan, Curator, Carnegie Museum of Art, Heinz Architectural Center</small>";


fader[2].msg[2] = "&#8220The bus shelter is everyone's favorite little project.  Clearly a labor of love, it's one of those powerhouse projects that has both macro urban effect and micro architectural detail...&#8221 <blockquote><small>-American Institute of Architects Wisconsin 2005 Design Awards Jury (Anne Gatling Haynes, AIA, New Haven; Tom Kundig, FAIA, Seattle; and Mark Schendel, AIA, Chicago)</small>";


fader[2].msg[3] = "&#8220Grace La and James Dallman... are considered rising stars... They understand the hidden connections among landscape, history and design.&#8221 <blockquote><small>-The Atlanta Journal-Constitution</small>";


fader[2].msg[4] = "&#8220[The Frederick Miller Employee Meeting Center] is a mature, skilled project... designed for the long haul; it is very classic and very contemporary... The project could be in many places like SoHo, Houston and other cities where you feel that you are part of the world stage and of the now.&#8221 <blockquote><small>-American Institute of Architects Wisconsin 2005 Design Awards Jury (Anne Gatling Haynes, AIA, New Haven; Tom Kundig, FAIA, Seattle; and Mark Schendel, AIA, Chicago)</small>";


fader[2].msg[5] = "&#8220...the work of a couple fairly new to the city, Grace La and James Dallman, has broadened the discourse and opened a few eyes.&#8221 <blockquote><small>-Architectural Record</small>";


fader[2].msg[6] = "&#8220One of the hottest [practices] is LA DALLMAN...[who] have garnered so much favorable attention for their cutting-edge, urbane proposals...&#8221 <blockquote><small>-The Milwaukee Journal Sentinel</small>";





// Start this fader
setTimeout(function() { throb(2); }, 1000);