var quotes=new Array() //
quotes[0] = "New York is not a no-fault divorce state.  Our highly competent matrimonial attorneys are well-versed in proving or defending against the limited grounds for divorce in New York.  We diligently use our vast business and tax backgrouds to arrange an equitable distribution of marital assets with the least tax consequences."



var Q = quotes.length;
var whichquotes=Math.round(Math.random()*(Q-1));
function showquotes(){document.write(quotes[whichquotes]);}
showquotes();
