g_purl = -1;
g_pmax = 0;
g_SiteTable = new Array();

g_SiteTable[g_pmax++] = new Array ('Providence Road 2 Retirement', DOM+cs+'_pr2r.php');
g_SiteTable[g_pmax++] = new Array ('Concur Technologies', DOM+cs+'_concur.php');
g_SiteTable[g_pmax++] = new Array ('Minor and James Clinic', DOM+cs+'_mj.php');
g_SiteTable[g_pmax++] = new Array ('Doghouse Productions', DOM+cs+'_dogpro.php');
g_SiteTable[g_pmax++] = new Array ('WPSR', DOM+cs+'_wpsr.php');
g_SiteTable[g_pmax++] = new Array ('WAHIT', DOM+cs+'_wahit.php');

g_SiteTable[g_pmax++] = new Array ('Stillpoint Health', DOM+sb+'_sha.php');
g_SiteTable[g_pmax++] = new Array ('Watsu Northwest', DOM+sb+'_watsu.php');
g_SiteTable[g_pmax++] = new Array ('Yoga Life', DOM+sb+'_yl.php');
g_SiteTable[g_pmax++] = new Array ('Animal Surgical Clinic', DOM+sb+'_ascs.php');
g_SiteTable[g_pmax++] = new Array ('NW Disaster Search Dogs', DOM+sb+'_ndsd.php');
g_SiteTable[g_pmax++] = new Array ('Whole Pet Vet', DOM+sb+'_wpv.php');
g_SiteTable[g_pmax++] = new Array ('Demolition Momma', DOM+sb+'_demomomma.php');
g_SiteTable[g_pmax++] = new Array ('Global Counseling', DOM+sb+'_globalc.php');
g_SiteTable[g_pmax++] = new Array ('ROI International', DOM+sb+'_roi.php');
g_SiteTable[g_pmax++] = new Array ('Seattle Bodymind', DOM+sb+'_sbm.php');
g_SiteTable[g_pmax++] = new Array ('Roosevelt Chiropractic', DOM+sb+'_rc.php');

g_SiteTable[g_pmax++] = new Array ('The View Outside', DOM+ec+'_tvo.php');

g_SiteTable[g_pmax++] = new Array ('Western Surgical Association', DOM+at+'_wsa.php');

g_SiteTable[g_pmax++] = new Array ('Network Event Theater', DOM+fv+'_net.php');
g_SiteTable[g_pmax++] = new Array ('Demolition Momma', DOM+fv+'_demomomma.php');
g_SiteTable[g_pmax++] = new Array ('Whole Pet Vet', DOM+fv+'_wpv.php');
//g_SiteTable[g_pmax++] = new Array ('Watsu Northwest', DOM+fv+'_watsunw.php');
//g_SiteTable[g_pmax++] = new Array ('Microsoft Direct Access', DOM+om+'_msftda.php');
g_SiteTable[g_pmax++] = new Array ('YouthStream Media', DOM+pm+'_ys.php');

function GoToSite(ffwd) {
	for(var i=0; i<g_SiteTable.length; i++){
		if (url==g_SiteTable[i][1]) {
			g_purl = i;
			if (ffwd) {
				if (++g_purl==g_pmax) g_purl=0;				
			} else {
				if (g_purl==0) {
					g_purl=g_pmax;
				}
				g_purl--;
			}
			//alert(g_SiteTable[g_purl][1]);
			self.location.href = g_SiteTable[g_purl][1];
			return;
		}
	}
}

function Back() {
	GoToSite(false);
}

function Forward() {
	GoToSite(true);
}
