
var quote=new Array();

    quote[0]='<h1 class=\"description_blue\"><i>September 11 and 12, 2009</i> - Law firm of Beutel Hurst Boleky LLC <a href=\"http://www.bhbtriallaw.com/medical_malpractice_lawyer/lake_forest_symphony_sponsorship.jpg\">hosts opening weekend</a> of Lake Forest Symphony for the 2009 - 2010 season</h1>';
    quote[1]='<h1 class=\"description_blue\"><i>September, 2009</i> - Beutel Hurst Boleky LLC obtains $2.65 Million verdict for medical malpractice resulting in blind eye</h1>';
    quote[2]='<h1 class=\"description_blue\"><i>October, 2009</i> - Brian Hurst appointed to Eastern Illinois University College of Sciences <a href=\"http://www.eiu.edu/~colsci/committees_advisory-board.php\">Advisory Board</a> for a three year term</h1>';
    quote[3]='<h1 class=\"description_blue\"><i>December 10, 2009</i> - Beutel Hurst Boleky LLC sponsors Chicago-Kent College of Law <a href=\"http://www.kentlaw.edu/depts/alums/lunch/2009sponsors.html\">2009 Alumni Awards & Recognition Luncheon</a></h1>';
    quote[4]='<h1 class=\"description_blue\"><i>January, 2010</i> - <a href=\"http://www.superlawyers.com/illinois/lawyer/Ernest-W-Beutel/8e45d290-8969-4a79-aaab-6a950f157146.html\">Ernest Beutel</a>, <a href=\"http://www.superlawyers.com/illinois/lawyer/Brian-Hurst/9e560553-040d-4b64-902c-b5ec98f468c0.html\">Brian Hurst</a>, and <a href=\"http://www.superlawyers.com/illinois/lawyer/Thomas-F-Boleky/3b36769b-7820-42c0-92e2-d3c21a76c611.html\">Thomas Boleky</a> named as 2010 Illinois Super Lawyers</h1>';
    quote[5]='<h1 class=\"description_blue\"><i>February 15, 2010</i> - Brian Hurst presents at the Illinois Trial Lawyers Association\'s &quot;<a href=\"http://www.iltla.com/WebsiteDocs/2-15-10_CD_order%20form_pub.pdf">Settlement, Liens, & Insurance Seminar</a>&quot;</h1>';
    quote[6]='<h1 class=\"description_blue\"><i>April, 2010</i> - Beutel Hurst Boleky LLC obtains $1.6 Million settlement for medical malpractice resulting from treatment for a fractured leg</h1>';
    quote[7]='<h1 class=\"description_blue\"><i>January, 2011</i> - <a href=\"http://www.superlawyers.com/illinois/lawyer/Ernest-W-Beutel/8e45d290-8969-4a79-aaab-6a950f157146.html">Ernest Beutel</a>, <a href=\"http://www.superlawyers.com/illinois/lawyer/Brian-Hurst/9e560553-040d-4b64-902c-b5ec98f468c0.html\">Brian Hurst</a>, and <a href=\"http://www.superlawyers.com/illinois/lawyer/Thomas-F-Boleky/3b36769b-7820-42c0-92e2-d3c21a76c611.html\">Thomas Boleky</a> named as 2011 Illinois Super Lawyers</h1>';
    quote[8]='<h1 class=\"description_blue\"><i>March 24, 2011</i> - Thomas Boleky presents at the Illinois State Bar Association\'s &quot;<a href=\"http://www.isba.org/cle/2011/03/24/foundationsevidenceandobjections\">Foundations, Evidence & Objections Seminar</a>&quot;</h1>';
    quote[9]='<h1 class=\"description_blue\"><i>March, 2011</i> - Beutel Hurst Boleky LLC obtains $1 million settlement (full extent of liability insurance) for medical malpractice related to untreated pericardial effusion resulting in wrongful death of 67-year-old</h1>';    
    quote[10]='<h1 class=\"description_blue\"><i>June 21, 2011</i> - Beutel Hurst Boleky, LLC, helps support the Brain Injury Association of Illinois, by participating in the <a href=\"http://www.bhbtriallaw.com/GlenClubGolfOuting.html\">2011 annual golf outing</a> at The Glen Club in Glenview, Illinois</h1>';    
    quote[11]='<h1 class=\"description_blue\"><i>June 27, 2011</i> - HBO releases &quot;<a href=\"http://hotcoffeethemovie.com\">Hot Coffee</a>&quot;, a documentary exposing the fraud behind the corporate public relations campaign for tort reform</h1>';



    





var i=0;



var speed=4000;    /*this is the time in milliseconds adjust to suit*/
var q=quote.length;
var mouse = false;
var imageObj1 = new Image();
var imageObj2 = new Image();
var imageObj3 = new Image();
var imageObj4 = new Image();
var img_array = new Array();

function preloader() 
{

     // load images  
     imageObj1.src = "http://www.bhbtriallaw.com/medical_malpractice_lawyer/one.jpg";
     imageObj2.src = "http://www.bhbtriallaw.com/medical_malpractice_lawyer/two.jpg";
     imageObj3.src = "http://www.bhbtriallaw.com/medical_malpractice_lawyer/three.jpg";
     imageObj4.src = "http://www.bhbtriallaw.com/medical_malpractice_lawyer/four.jpg";

     // set image list
     img_array = new Array();
     img_array[0]=imageObj1;
     img_array[1]=imageObj2;
     img_array[2]=imageObj3;
     img_array[3]=imageObj4;

} 

function mouseStatus(n) {
   mouse = n;
}

function showQuote() {
 if(mouse == false) {
     q--;
     document.getElementById("quotes").innerHTML=quote[q];
  if(q==0) {
     q=quote.length;
  }
 }	
}

function fadein_image(opac) {

   document.getElementById('Lawyer_Image').style.filter = "alpha(opacity="+opac*100+")";
   document.getElementById('Lawyer_Image').style.opacity = opac;
   if (opac < 1) {
      opac=opac+0.05;
      setTimeout("fadein_image("+opac+");",1);
   }
}


function fadeout_image(opac) {

   document.getElementById('Lawyer_Image').style.filter = "alpha(opacity="+opac*100+")";
   document.getElementById("Lawyer_Image").style.opacity = opac; 
   if (opac > 0) {
      opac=opac-0.05;
      setTimeout("fadeout_image("+opac+");",1);
   }
   else {
      if (i==img_array.length-1){
	 i = 0;
	}
      else {
	i++;
      }
      document.getElementById("Lawyer_Image").src = img_array[i].src;
       
      setTimeout("fadein_image(0)", 10);
   }
}


setInterval('showQuote()',speed);
setInterval('fadeout_image(1)',8000);

