var svctxt=new Array();
svctxt[0]="Fax your list of consumables for your ship and we will provide a competitive quotation, normally within a few hours. ";
svctxt[1]="Lowe Parker will be your purchasing agent for your ship's supplies and sundry items.";
svctxt[2]="If you have regular stores that are taken on let us know, we can have those items ready next time you are in port. ";
svctxt[3]="Delivering your vessel's stores even on the weekend."
svctxt[4]="We take the time to get to know your ship and it's needs.";

var svcname=new Array();
svcname[0]="QUOTATIONS";
svcname[1]="PURCHASING";
svcname[2]="STORING";
svcname[3]="WEEKEND DELIVERY";
svcname[4]="PERSONALISED SERVICE";

function mouseOver(f)
{
var box = document.getElementById("svcbox");
box.innerText=svctxt[f];

var boxtop = document.getElementById("sd");
boxtop.innerText=svcname[f];
}
function mouseOut(f)
{
var box = document.getElementById("svcbox");
box.innerText="Please mouse over the service you are intersted in learning more about.";

var boxtop = document.getElementById("sd");
boxtop.innerText="SERVICE DETAIL";
}
 
