// JavaScript Document

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = 'Level AV has consistently completed all jobs on time and on budget. The results are always excellent.<div id="customer">Garry B.</div>';
Quotation[1] = 'Level AV&rsquo;s exceptional job knowledge and enthusiasm puts them in a category that we consider superior to that of their peers.<div id="customer">Dr. and Mrs. Tom H.</div>';
Quotation[2] = 'I am extremely pleased with the quality of Level AV&rsquo;s work. The TV, speakers and lights were beautifully mounted.<div id="customer">Eleanor H.</div>';
Quotation[3] = 'It was such a pleasure . . . Thank you for doing a great job.<div id="customer">Dr. & Mrs. Jean Q.</div>';
Quotation[4] = 'Level Audio Video did a superb job installing a Russound system in our country home.<div id="customer">Mike L.</div>';
Quotation[5] = 'I have no hesitation in recommending Derek and his team.  I get many compliments on the system that Level-AV installed.<div id="customer">Mike L.</div>';

var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);
}




function w1() {
document.write('<a href="mailto:info@level-av.com">info@level-av.com</a>');
}

function MM_showHideLayers() { //v9.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=5) 
  with (document) if (getElementById && ((obj=getElementById(args[i]))!=null)) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
    obj.visibility=v; }
}