﻿var BusinessMembers=[
'All About Animal Massage',
'Antanovich Dressage',
'Arena Rehab Specialists',
'A Stable Business, Inc',
'Cadbury Farm',
'Carolynn Bunch Photography',
'Chinook Equestrian Center',
'Dayville Hay & Grain Inc',
'Deerfield Farms',
'DeJong Sawdust & Shavings',
'Dutch Mills Farm Inc',
'Efficient Arena, Inc',
'Equine Concepts LLC',
'Equine Medicine & Surgery',
'Helm Saddles, LLC',
'Gibson Ridge Farm',
'NW Insurance & NW Equine NW Therapeutic Riding Center',
'Olson-Mills Tack Shop',
'Rider Pilates',
'San Sebastian Equestrian Center',
'The Driving Training Center',
'The Organized Horse Inc',
'Topline Sporthorse Video',
'Whitethorn Farm',
'Wilderness Animal Hospital',
'Wildwood Farm, LLC',
'WW Training & Instruction'
];
ScrollText=" Here is my string which is something else!";
ScrollDelay = 200;
ScrollChars = 1;
<!-- 
/*Text box marquee by Dave Methvin,
Windows Magazine
May be used/modified if credit line is
retained*/
function ScrollMarquee() {
	window.setTimeout('ScrollMarquee()',ScrollDelay);
	var msg = document.BMmarquee.text.value;
	document.BMmarquee.text.value = msg.substring(ScrollChars) + msg.substring(0,ScrollChars); 
}
SMshuffle = function(v){
    for(var j, x, i = v.length; i; j = parseInt(Math.random() * i), x = v[--i], v[i] = v[j], v[j] = x);
    return v;
};
SMmakestring = function(v){
	v=SMshuffle(v);
	var s='';
    for(var i=0; i<v.length; i++) s=s+' - '+v[i];
    return s;
}
function gotoBusinesses() {
	window.location = "http://www.equestriansinstitute.org/wroot09/community/businesses.html";
}
