var quotes=new Array() //
quotes[0] = "Landlords have rights, too!  See how you can prevail in a dispossess action by speaking with our highly experienced Landlord/Tenant litigators."
quotes[1] = "Serious injuries require serious attorneys.  We are only compensated if we succeed in recovering money for you.  You need hard-working and motivated attorneys to succeed against negligent parties."



var Q = quotes.length;
var whichquotes=Math.round(Math.random()*(Q-1));
function showquotes(){document.write(quotes[whichquotes]);}
showquotes();
