// Drop Bown Menu - Head Script
// copyright Stephen Chapman, 4th March 2005, 5th February 2006
// you may copy this menu provided that you retain the copyright notice

var fix = 1; var delay = 2000; var modd = 0;
var bar = new menuBar();
bar.addMenu('SERVICES');
bar.addItem('service.htm','Stallion Services');
bar.addItem('service.htm#mare','Mare Services');
bar.addItem('service.htm#embryo','Embryo Services');
bar.addItem('service.htm#semen','Semen Services');
bar.addItem('service.htm#foal','Foal Services');
bar.addMenu('SALES');
bar.addItem('sales.htm','Stallion Sales');
bar.addItem('sales.htm#mare','Mare Sales');
bar.addItem('sales.htm#lease','Mare Leases');
bar.addMenu('ARTICLES');
bar.addItem('article.htm','About The Stallion');
bar.addItem('article.htm#mare','About The Mare');
bar.addItem('article.htm#foal','Foals and Foaling');

// do not change anything below this line
var blc = '#000000';var blh = '#000000';var bla = '#000000';var lc = '#dbdfce';var lh = '#ffffff';var la = '#ffffff';
function menuBar() {this.jj = -1;this.kk = 0;this.mO = new Array();this.addMenu = addMenu;this.addItem = addItem;this.writeBar = writeBar;this.writeDrop = writeDrop;}function addMenu(main) {this.mO[++this.jj] = new Object();this.mO[this.jj].main = main;this.kk = 0;this.mO[this.jj].link = new Array();this.mO[this.jj].name = new Array();}function addItem(link,name) {this.mO[this.jj].link[this.kk] = link;this.mO[this.jj].name[this.kk++] = name;}functio
