// JavaScript Document

function init() {

var homecontent = new Array;
homecontent[0] ="<p>Rubenstein, Marucci &amp; Shinrod is a full-service law firm offering both litigation and transactional counsel to a wide variety of clients, from injured workers to mid-size companies. With a combined sixty years of practice in the State Courts, Administrative Agencies, and Federal system, Richard Rubenstein, Anthony Marucci, and Edward Shinrod offer personalized service, reasonable terms, and thorough preparation... <a href='lawyers_nj_about.html'>more ></a></p>";
homecontent[1] = "<p>New Jersey law mandates that workers injured by trauma, repetitive motion, or occupational diseases receive immediate benefits from their employers and their insurance carriers. Delays, denials of medical care, and battles over benefits require strong and vigorous advocacy by seasoned lawyers who maintain a presence in our Worker's Compensation Courts. Richard B. Rubenstein and Edward B. Shinrod  have tried cases in every...</p>";
homecontent[2] = "<p>Navigating your way through a separation or divorce can be one of life's greatest challenges. Experienced, sensitive, and caring counsel can make a difference in both the process and the result....</p><p>Adoptions can and should be a great blessing to a family. Your counsel should be experienced, discrete, and responsive....</p>";
homecontent[3] = "<p>A second-generation criminal defense attorney, Anthony Marucci will bring years of experience in both Municipal Court and Superior Court to bear, in order to provide you with the best defense available under the law. From motor vehicle violations to DUI, to more serious charges, you have the right to a vigorous and thorough investigation and Trial....</p>";
homecontent[4] ="<p>If you have been injured as a result of negligence, professional misconduct or malpractice, unsafe or defective products, or automobile accidents, our firm provides a full range of legal services to secure the highest level of compensation available under the law. Richard B. Rubenstein and Anthony Marucci have combined forty years of litigation experience in State and Federal Courts in New Jersey...</p>";
homecontent[5] ="<p>If you have a contract dispute, whether subject to civil suit or arbitration, Rubenstein, Marucci & Shinrod, LLC has an attorney who can master complex legal issues and present them to get you the best result. Anthony Marucci is an experienced litigator of property and contract disputes...</p>";

document.getElementById('homesidecopy').innerHTML = homecontent[0];

document.getElementById('workcompbtn').onmouseover = function() {document.getElementById('homesidecopy').innerHTML = homecontent[1];}
document.getElementById('divorcebtn').onmouseover = function() {document.getElementById('homesidecopy').innerHTML = homecontent[2];}
document.getElementById('criminalbtn').onmouseover = function() {document.getElementById('homesidecopy').innerHTML = homecontent[3];}
document.getElementById('personalbtn').onmouseover = function() {document.getElementById('homesidecopy').innerHTML = homecontent[4];}
document.getElementById('litbtn').onmouseover = function() {document.getElementById('homesidecopy').innerHTML = homecontent[5];}

document.getElementById('homebtns').onmouseout = function() {document.getElementById('homesidecopy').innerHTML = homecontent[0];}

}