What do i need to add to this script so i can use it multiple times in the same page without any conflicts?
<script type="text/javascript">
function initArray() { this.length = initArray.arguments.length;
for (var i = 0; i < this.length; i++) {
this[i] = initArray.arguments[i];
}
}
link =...