////////////////////////////////////////////////////////////
///// Modified index program
///// Creates various buttons dynamiclly onto ady web page that called if
///// Code rewritten by Robert Bedeski 2009
/////
///// 	<script language="JavaScript" type="text/JavaScript">MainIndex("");</script>
/////
////////////////////////////////////////////////////////////

var but = "";
var nme = "";target="_self"
var alt = "";
var href = "";

function write_but (addPre) {

document.write("<a target=\"_self\" href=\"" + addPre + href + ".html\">");
document.write("<img style=\"border: 0\" id=\"" + nme + but +"\"");
document.write("alt=\"" + alt + "\" src=\"" + addPre + "buttons/but_" + nme + "1.jpg\" height=\"20\" width=\"100\"");
document.write("onmouseover=\"FP_swapImg(1,0,/*id*/\'" + nme + but +"\',/*url*/\'" + addPre + "buttons/but_" + nme + "2.jpg\')\"");
document.write("onmouseout=\"FP_swapImg(0,0,/*id*/\'" + nme + but +"\',/*url*/\'" + addPre + "buttons/but_" + nme + "1.jpg\')\"");
document.write("onmousedown=\"FP_swapImg(1,0,/*id*/\'" + nme + but +"\',/*url*/\'" + addPre + "buttons/but_" + nme + "3.jpg\')\"");
document.write("onmouseup=\"FP_swapImg(0,0,/*id*/\'" + nme + but +"\',/*url*/\'" + addPre + "buttons/but_" + nme + "2.jpg\')\"></a>");

}

function write_but2 (addPre) {

document.write("<a href=\"" + addPre + href + ".html\">");
document.write("<img style=\"border: 0\" id=\"" + nme + but +"\"");
document.write("alt=\"" + alt + "\" src=\"" + addPre + "buttons/but_" + nme + "1.jpg\" height=\"20\" width=\"100\"");
document.write("onmouseover=\"FP_swapImg(1,0,/*id*/\'" + nme + but +"\',/*url*/\'" + addPre + "buttons/but_" + nme + "2.jpg\')\"");
document.write("onmouseout=\"FP_swapImg(0,0,/*id*/\'" + nme + but +"\',/*url*/\'" + addPre + "buttons/but_" + nme + "1.jpg\')\"");
document.write("onmousedown=\"FP_swapImg(1,0,/*id*/\'" + nme + but +"\',/*url*/\'" + addPre + "buttons/but_" + nme + "3.jpg\')\"");
document.write("onmouseup=\"FP_swapImg(0,0,/*id*/\'" + nme + but +"\',/*url*/\'" + addPre + "buttons/but_" + nme + "2.jpg\')\"></a>");

}

function write_but3 (addPre) {

document.write("<a href=\"" + addPre + href + "\">");
document.write("<img style=\"border: 0\" id=\"" + nme + but +"\"");
document.write("alt=\"" + alt + "\" src=\"" + addPre + "buttons/but_" + nme + "1.jpg\" height=\"20\" width=\"100\"");
document.write("onmouseover=\"FP_swapImg(1,0,/*id*/\'" + nme + but +"\',/*url*/\'" + addPre + "buttons/but_" + nme + "2.jpg\')\"");
document.write("onmouseout=\"FP_swapImg(0,0,/*id*/\'" + nme + but +"\',/*url*/\'" + addPre + "buttons/but_" + nme + "1.jpg\')\"");
document.write("onmousedown=\"FP_swapImg(1,0,/*id*/\'" + nme + but +"\',/*url*/\'" + addPre + "buttons/but_" + nme + "3.jpg\')\"");
document.write("onmouseup=\"FP_swapImg(0,0,/*id*/\'" + nme + but +"\',/*url*/\'" + addPre + "buttons/but_" + nme + "2.jpg\')\"></a>");

}

////////////////////////////////////////////////////////////
/////  Displays main index buttons where called
////////////////////////////////////////////////////////////

function MainIndex (addPre) {

var d=new Date();
var mth="";
var idx = 0;
var month=new Array(12);
month[0]="jan";
month[1]="feb";
month[2]="mar";
month[3]="apr";
month[4]="may";
month[5]="jun";
month[6]="jul";
month[7]="aug";
month[8]="sep";
month[9]="oct";
month[10]="nov";
month[11]="dec";

idx = d.getMonth();
mth = month[idx];

//  but		Assign a unique number to button generated
//  nme		the short name assigned to the button jpg
//          "buttons/but_XXXXX"  where nme = XXXXXX
//  alt		Hover over name of button
//  href    webpage name to jump to on press
//
//
document.write("<div class=\"center\">");
but = "01";nme = "home";alt = "Home";href = "default";write_but(addPre);
but = "02";nme = "about";alt = "About Us";href = "aboutus";write_but(addPre);
but = "03";nme = "bible";alt = "Bible Studies";href = "biblestudy";write_but(addPre);
but = "04";nme = "blog";alt = "Pastor's Blog";href = "http://blog.northforsythumc.org/";write_but3(addPre);
but = "05";nme = "cal";alt = "Calendar";href = "http://www.google.com/calendar/embed?src=webmaster%40northforsythumc.org&amp;ctz=America/New_York";write_but2(addPre);
but = "06";nme = "form";alt = "Church Forms";href = "forms";write_but(addPre);
document.write("<br>");
but = "07";nme = "goals";alt = "Mission Goals";href = "goals";write_but(addPre);
but = "08";nme = "lead";alt = "Leadership";href = "leadership";write_but(addPre);
but = "09";nme = "links";alt = "Links";href = "links";write_but(addPre);
but = "10";nme = "photo";alt = "Church Photos";href = "http://photos.northforsythumc.org/";write_but3(addPre);
but = "11";nme = "preq";alt = "Prayer Request";href = "prayerreq";write_but(addPre);
but = "12";nme = "serv";alt = "Services";href = "services_" + mth;write_but(addPre);
document.write("</div>");

}

////////////////////////////////////////////////////////////
/////  Displays main index vertical buttons where called
////////////////////////////////////////////////////////////

function MainIndexVert (addPre) {

var d=new Date();
var mth="";
var idx = 0;
var month=new Array(12);
month[0]="jan";
month[1]="feb";
month[2]="mar";
month[3]="apr";
month[4]="may";
month[5]="jun";
month[6]="jul";
month[7]="aug";
month[8]="sep";
month[9]="oct";
month[10]="nov";
month[11]="dec";

idx = d.getMonth();
mth = month[idx];

//  but		Assign a unique number to button generated
//  nme		the short name assigned to the button jpg
//          "buttons/but_XXXXX"  where nme = XXXXXX
//  alt		Hover over name of button
//  href    webpage name to jump to on press
//
//
document.write("<div class=\"center\">");

but = "01";nme = "home";alt = "Home";href = "default";write_but(addPre);
but = "04";nme = "schdl";alt = "2010 Schedule";href = "schedule";write_but(addPre);
but = "03";nme = "team";alt = "Team Roster";href = "team";write_but(addPre); 
but = "16";nme = "hotrig";alt = "Hot Rigs";href = "hotrigs";write_but(addPre); 
but = "05";nme = "cal";alt = "Calendar";href = "http://www.google.com/calendar/embed?src=admin%40sixmilebassclub.com&amp;ctz=America/New_York";write_but2(addPre); 
but = "06";nme = "reslt";alt = "Tournament Results";href = "results";write_but(addPre); 
but = "09";nme = "lake";alt = "lake Information";href = "lakes";write_but(addPre); 
but = "10";nme = "link";alt = "Links";href = "links";write_but(addPre); 
but = "07";nme = "offc";alt = "2010 Chapter Officer's";href = "officers";write_but(addPre); 
but = "02";nme = "affl";alt = "Club Affliations";href = "affliations";write_but(addPre);
but = "08";nme = "laws";alt = "ByLaws";href = "files/Six%20Mile%20BASSMasters%20By-Laws%202010.pdf";write_but3(addPre); 
//but = "11";nme = "blog";alt = "Blog";href = "http://blog.sixmilebassclub.com/";write_but3(addPre); 
but = "12";nme = "photo";alt = "Photo's";href = "http://photos.sixmilebassclub.com";write_but3(addPre); 
but = "13";nme = "sale";alt = "Sale / Trade";href = "sale";write_but(addPre);
but = "14";nme = "news";alt = "In The News";href = "news";write_but(addPre);
but = "15";nme = "cont";alt = "Contact Us";href = "officers";write_but(addPre); 
document.write("</div>");
}

////////////////////////////////////////////////////////////
/////  Displays links to monthly calendar pages - top of page
////////////////////////////////////////////////////////////

function TopCalIndex () {

document.write("<div class=\"center\">");

var d=new Date();
var alt="alt=\"October\"";
var mth="";
var idx = 0;
var month=new Array(12);
month[0]="jan";
month[1]="feb";
month[2]="mar";
month[3]="apr";
month[4]="may";
month[5]="jun";
month[6]="jul";
month[7]="aug";
month[8]="sep";
month[9]="oct";
month[10]="nov";
month[11]="dec";

var nam=new Array(12);
nam[0]="January";
nam[1]="February";
nam[2]="March";
nam[3]="April";
nam[4]="May";
nam[5]="June";
nam[6]="July";
nam[7]="August";
nam[8]="September";
nam[9]="October";
nam[10]="November";
nam[11]="December";

idx = d.getMonth();
mth = month[idx];
alt = "\"" + nam[idx] + "\"";
document.write("<a href=\"calendar_" + mth + ".html\">");
document.write("<img style=\"border: 0\" id=\"mtht1\"");
document.write("src=\"buttons/but_" + mth + "1.jpg\" height=\"20\" width=\"50\" alt=" + alt);
document.write("onmouseover=\"FP_swapImg(1,0,/*id*/\'mtht1\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"");
document.write("onmouseout=\"FP_swapImg(0,0,/*id*/\'mtht1\',/*url*/\'buttons/but_" + mth + "1.jpg\')\"");
document.write("onmousedown=\"FP_swapImg(1,0,/*id*/\'mtht1\',/*url*/\'buttons/but_" + mth + "3.jpg\')\"");
document.write("onmouseup=\"FP_swapImg(0,0,/*id*/\'mtht1\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"></a>");

idx = idx + 1;
if (idx > 11)
  {idx = 0};
mth = month[idx];
alt = "\"" + nam[idx] + "\"";
document.write("<a href=\"calendar_" + mth + ".html\">");
document.write("<img style=\"border: 0\" id=\"mtht2\"");
document.write("src=\"buttons/but_" + mth + "1.jpg\" height=\"20\" width=\"50\" alt=" + alt);
document.write("onmouseover=\"FP_swapImg(1,0,/*id*/\'mtht2\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"");
document.write("onmouseout=\"FP_swapImg(0,0,/*id*/\'mtht2\',/*url*/\'buttons/but_" + mth + "1.jpg\')\"");
document.write("onmousedown=\"FP_swapImg(1,0,/*id*/\'mtht2\',/*url*/\'buttons/but_" + mth + "3.jpg\')\"");
document.write("onmouseup=\"FP_swapImg(0,0,/*id*/\'mtht2\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"></a>");


idx = idx + 1;
if (idx > 11)
  {idx = 0};
mth = month[idx];
alt = "\"" + nam[idx] + "\"";
document.write("<a href=\"calendar_" + mth + ".html\">");
document.write("<img style=\"border: 0\" id=\"mtht3\"");
document.write("src=\"buttons/but_" + mth + "1.jpg\" height=\"20\" width=\"50\" alt=" + alt);
document.write("onmouseover=\"FP_swapImg(1,0,/*id*/\'mtht3\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"");
document.write("onmouseout=\"FP_swapImg(0,0,/*id*/\'mtht3\',/*url*/\'buttons/but_" + mth + "1.jpg\')\"");
document.write("onmousedown=\"FP_swapImg(1,0,/*id*/\'mtht3\',/*url*/\'buttons/but_" + mth + "3.jpg\')\"");
document.write("onmouseup=\"FP_swapImg(0,0,/*id*/\'mtht3\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"></a>");

idx = idx + 1;
if (idx > 11)
  {idx = 0};
mth = month[idx];
alt = "\"" + nam[idx] + "\"";
document.write("<a href=\"calendar_" + mth + ".html\">");
document.write("<img style=\"border: 0\" id=\"mtht4\"");
document.write("src=\"buttons/but_" + mth + "1.jpg\" height=\"20\" width=\"50\" alt=" + alt);
document.write("onmouseover=\"FP_swapImg(1,0,/*id*/\'mtht4\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"");
document.write("onmouseout=\"FP_swapImg(0,0,/*id*/\'mtht4\',/*url*/\'buttons/but_" + mth + "1.jpg\')\"");
document.write("onmousedown=\"FP_swapImg(1,0,/*id*/\'mtht4\',/*url*/\'buttons/but_" + mth + "3.jpg\')\"");
document.write("onmouseup=\"FP_swapImg(0,0,/*id*/\'mtht4\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"></a>");


idx = idx + 1;
if (idx > 11)
  {idx = 0};
mth = month[idx];
alt = "\"" + nam[idx] + "\"";
document.write("<a href=\"calendar_" + mth + ".html\">");
document.write("<img style=\"border: 0\" id=\"mtht5\"");
document.write("src=\"buttons/but_" + mth + "1.jpg\" height=\"20\" width=\"50\" alt=" + alt);
document.write("onmouseover=\"FP_swapImg(1,0,/*id*/\'mtht5\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"");
document.write("onmouseout=\"FP_swapImg(0,0,/*id*/\'mtht5\',/*url*/\'buttons/but_" + mth + "1.jpg\')\"");
document.write("onmousedown=\"FP_swapImg(1,0,/*id*/\'mtht5\',/*url*/\'buttons/but_" + mth + "3.jpg\')\"");
document.write("onmouseup=\"FP_swapImg(0,0,/*id*/\'mtht5\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"></a>");


idx = idx + 1;
if (idx > 11)
  {idx = 0};
mth = month[idx];
alt = "\"" + nam[idx] + "\"";
document.write("<a href=\"calendar_" + mth + ".html\">");
document.write("<img style=\"border: 0\" id=\"mtht6\"");
document.write("src=\"buttons/but_" + mth + "1.jpg\" height=\"20\" width=\"50\" alt=" + alt);
document.write("onmouseover=\"FP_swapImg(1,0,/*id*/\'mtht6\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"");
document.write("onmouseout=\"FP_swapImg(0,0,/*id*/\'mtht6\',/*url*/\'buttons/but_" + mth + "1.jpg\')\"");
document.write("onmousedown=\"FP_swapImg(1,0,/*id*/\'mtht6\',/*url*/\'buttons/but_" + mth + "3.jpg\')\"");
document.write("onmouseup=\"FP_swapImg(0,0,/*id*/\'mtht6\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"></a>");

document.write("</div>");
}



////////////////////////////////////////////////////////////
/////  Displays links to monthly calendar pages - Bottom of page
////////////////////////////////////////////////////////////

function BotCalIndex () {

document.write("<div class=\"center\">");

var d=new Date();
var alt="alt=\"October\"";
var mth="";
var idx = 0;
var month=new Array(12);
month[0]="jan";
month[1]="feb";
month[2]="mar";
month[3]="apr";
month[4]="may";
month[5]="jun";
month[6]="jul";
month[7]="aug";
month[8]="sep";
month[9]="oct";
month[10]="nov";
month[11]="dec";

var nam=new Array(12);
nam[0]="January";
nam[1]="February";
nam[2]="March";
nam[3]="April";
nam[4]="May";
nam[5]="June";
nam[6]="July";
nam[7]="August";
nam[8]="September";
nam[9]="October";
nam[10]="November";
nam[11]="December";

idx = d.getMonth();
mth = month[idx];
alt = "\"" + nam[idx] + "\"";
document.write("<a href=\"calendar_" + mth + ".html\">");
document.write("<img style=\"border: 0\" id=\" mthb1\"");
document.write("src=\"buttons/but_" + mth + "1.jpg\" height=\"20\" width=\"50\" alt=" + alt);
document.write("onmouseover=\"FP_swapImg(1,0,/*id*/\' mthb1\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"");
document.write("onmouseout=\"FP_swapImg(0,0,/*id*/\' mthb1\',/*url*/\'buttons/but_" + mth + "1.jpg\')\"");
document.write("onmousedown=\"FP_swapImg(1,0,/*id*/\' mthb1\',/*url*/\'buttons/but_" + mth + "3.jpg\')\"");
document.write("onmouseup=\"FP_swapImg(0,0,/*id*/\' mthb1\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"></a>");

idx = idx + 1;
if (idx > 11)
  {idx = 0};
mth = month[idx];
alt = "\"" + nam[idx] + "\"";
document.write("<a href=\"calendar_" + mth + ".html\">");
document.write("<img style=\"border: 0\" id=\" mthb2\"");
document.write("src=\"buttons/but_" + mth + "1.jpg\" height=\"20\" width=\"50\" alt=" + alt);
document.write("onmouseover=\"FP_swapImg(1,0,/*id*/\' mthb2\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"");
document.write("onmouseout=\"FP_swapImg(0,0,/*id*/\' mthb2\',/*url*/\'buttons/but_" + mth + "1.jpg\')\"");
document.write("onmousedown=\"FP_swapImg(1,0,/*id*/\' mthb2\',/*url*/\'buttons/but_" + mth + "3.jpg\')\"");
document.write("onmouseup=\"FP_swapImg(0,0,/*id*/\' mthb2\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"></a>");


idx = idx + 1;
if (idx > 11)
  {idx = 0};
mth = month[idx];
alt = "\"" + nam[idx] + "\"";
document.write("<a href=\"calendar_" + mth + ".html\">");
document.write("<img style=\"border: 0\" id=\" mthb3\"");
document.write("src=\"buttons/but_" + mth + "1.jpg\" height=\"20\" width=\"50\" alt=" + alt);
document.write("onmouseover=\"FP_swapImg(1,0,/*id*/\' mthb3\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"");
document.write("onmouseout=\"FP_swapImg(0,0,/*id*/\' mthb3\',/*url*/\'buttons/but_" + mth + "1.jpg\')\"");
document.write("onmousedown=\"FP_swapImg(1,0,/*id*/\' mthb3\',/*url*/\'buttons/but_" + mth + "3.jpg\')\"");
document.write("onmouseup=\"FP_swapImg(0,0,/*id*/\' mthb3\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"></a>");

idx = idx + 1;
if (idx > 11)
  {idx = 0};
mth = month[idx];
alt = "\"" + nam[idx] + "\"";
document.write("<a href=\"calendar_" + mth + ".html\">");
document.write("<img style=\"border: 0\" id=\" mthb4\"");
document.write("src=\"buttons/but_" + mth + "1.jpg\" height=\"20\" width=\"50\" alt=" + alt);
document.write("onmouseover=\"FP_swapImg(1,0,/*id*/\' mthb4\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"");
document.write("onmouseout=\"FP_swapImg(0,0,/*id*/\' mthb4\',/*url*/\'buttons/but_" + mth + "1.jpg\')\"");
document.write("onmousedown=\"FP_swapImg(1,0,/*id*/\' mthb4\',/*url*/\'buttons/but_" + mth + "3.jpg\')\"");
document.write("onmouseup=\"FP_swapImg(0,0,/*id*/\' mthb4\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"></a>");


idx = idx + 1;
if (idx > 11)
  {idx = 0};
mth = month[idx];
alt = "\"" + nam[idx] + "\"";
document.write("<a href=\"calendar_" + mth + ".html\">");
document.write("<img style=\"border: 0\" id=\" mthb5\"");
document.write("src=\"buttons/but_" + mth + "1.jpg\" height=\"20\" width=\"50\" alt=" + alt);
document.write("onmouseover=\"FP_swapImg(1,0,/*id*/\' mthb5\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"");
document.write("onmouseout=\"FP_swapImg(0,0,/*id*/\' mthb5\',/*url*/\'buttons/but_" + mth + "1.jpg\')\"");
document.write("onmousedown=\"FP_swapImg(1,0,/*id*/\' mthb5\',/*url*/\'buttons/but_" + mth + "3.jpg\')\"");
document.write("onmouseup=\"FP_swapImg(0,0,/*id*/\' mthb5\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"></a>");


idx = idx + 1;
if (idx > 11)
  {idx = 0};
mth = month[idx];
alt = "\"" + nam[idx] + "\"";
document.write("<a href=\"calendar_" + mth + ".html\">");
document.write("<img style=\"border: 0\" id=\" mthb6\"");
document.write("src=\"buttons/but_" + mth + "1.jpg\" height=\"20\" width=\"50\" alt=" + alt);
document.write("onmouseover=\"FP_swapImg(1,0,/*id*/\' mthb6\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"");
document.write("onmouseout=\"FP_swapImg(0,0,/*id*/\' mthb6\',/*url*/\'buttons/but_" + mth + "1.jpg\')\"");
document.write("onmousedown=\"FP_swapImg(1,0,/*id*/\' mthb6\',/*url*/\'buttons/but_" + mth + "3.jpg\')\"");
document.write("onmouseup=\"FP_swapImg(0,0,/*id*/\' mthb6\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"></a>");

document.write("</div>");
}



////////////////////////////////////////////////////////////
/////  Displays links to monthly services pages
////////////////////////////////////////////////////////////

function TopServIndex () {

document.write("<div class=\"center\">");

var d=new Date();
var alt="alt=\"October\"";
var mth="";
var idx = 0;
var month=new Array(12);
month[0]="jan";
month[1]="feb";
month[2]="mar";
month[3]="apr";
month[4]="may";
month[5]="jun";
month[6]="jul";
month[7]="aug";
month[8]="sep";
month[9]="oct";
month[10]="nov";
month[11]="dec";

var nam=new Array(12);
nam[0]="January";
nam[1]="February";
nam[2]="March";
nam[3]="April";
nam[4]="May";
nam[5]="June";
nam[6]="July";
nam[7]="August";
nam[8]="September";
nam[9]="October";
nam[10]="November";
nam[11]="December";

idx = d.getMonth();
idx = idx - 1; if (idx < 0) {idx = 11}; if (idx < 0) {idx = 11};
idx = idx - 1; if (idx < 0) {idx = 11}; if (idx < 0) {idx = 11};
idx = idx - 1; if (idx < 0) {idx = 11}; if (idx < 0) {idx = 11};
idx = idx - 1; if (idx < 0) {idx = 11}; if (idx < 0) {idx = 11};
idx = idx - 1; if (idx < 0) {idx = 11}; if (idx < 0) {idx = 11};
idx = idx - 1; if (idx < 0) {idx = 11}; if (idx < 0) {idx = 11};
idx = idx - 1; if (idx < 0) {idx = 11}; if (idx < 0) {idx = 11};
idx = idx - 1; if (idx < 0) {idx = 11}; if (idx < 0) {idx = 11};
idx = idx - 1; if (idx < 0) {idx = 11}; if (idx < 0) {idx = 11};
idx = idx - 1; if (idx < 0) {idx = 11}; if (idx < 0) {idx = 11};
idx = idx - 1; if (idx < 0) {idx = 11}; if (idx < 0) {idx = 11};

mth = month[idx];
alt = "\"" + nam[idx] + "\"";
document.write("<a href=\"services_" + mth + ".html\">");
document.write("<img style=\"border: 0\" id=\"serv1\"");
document.write("src=\"buttons/but_" + mth + "1.jpg\" height=\"20\" width=\"50\" alt=" + alt);
document.write("onmouseover=\"FP_swapImg(1,0,/*id*/\'mserv1\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"");
document.write("onmouseout=\"FP_swapImg(0,0,/*id*/\'mserv1\',/*url*/\'buttons/but_" + mth + "1.jpg\')\"");
document.write("onmousedown=\"FP_swapImg(1,0,/*id*/\'mserv1\',/*url*/\'buttons/but_" + mth + "3.jpg\')\"");
document.write("onmouseup=\"FP_swapImg(0,0,/*id*/\'mserv1\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"></a>");

idx = idx + 1;
if (idx > 11)
  {idx = 0};
mth = month[idx];
alt = "\"" + nam[idx] + "\"";
document.write("<a href=\"services_" + mth + ".html\">");
document.write("<img style=\"border: 0\" id=\"serv2\"");
document.write("src=\"buttons/but_" + mth + "1.jpg\" height=\"20\" width=\"50\" alt=" + alt);
document.write("onmouseover=\"FP_swapImg(1,0,/*id*/\'mserv2\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"");
document.write("onmouseout=\"FP_swapImg(0,0,/*id*/\'mserv2\',/*url*/\'buttons/but_" + mth + "1.jpg\')\"");
document.write("onmousedown=\"FP_swapImg(1,0,/*id*/\'mserv2\',/*url*/\'buttons/but_" + mth + "3.jpg\')\"");
document.write("onmouseup=\"FP_swapImg(0,0,/*id*/\'mserv2\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"></a>");


idx = idx + 1;
if (idx > 11)
  {idx = 0};
mth = month[idx];
alt = "\"" + nam[idx] + "\"";
document.write("<a href=\"services_" + mth + ".html\">");
document.write("<img style=\"border: 0\" id=\"serv3\"");
document.write("src=\"buttons/but_" + mth + "1.jpg\" height=\"20\" width=\"50\" alt=" + alt);
document.write("onmouseover=\"FP_swapImg(1,0,/*id*/\'mserv3\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"");
document.write("onmouseout=\"FP_swapImg(0,0,/*id*/\'mserv3\',/*url*/\'buttons/but_" + mth + "1.jpg\')\"");
document.write("onmousedown=\"FP_swapImg(1,0,/*id*/\'mserv3\',/*url*/\'buttons/but_" + mth + "3.jpg\')\"");
document.write("onmouseup=\"FP_swapImg(0,0,/*id*/\'mserv3\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"></a>");

idx = idx + 1;
if (idx > 11)
  {idx = 0};
mth = month[idx];
alt = "\"" + nam[idx] + "\"";
document.write("<a href=\"services_" + mth + ".html\">");
document.write("<img style=\"border: 0\" id=\"serv4\"");
document.write("src=\"buttons/but_" + mth + "1.jpg\" height=\"20\" width=\"50\" alt=" + alt);
document.write("onmouseover=\"FP_swapImg(1,0,/*id*/\'mserv4\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"");
document.write("onmouseout=\"FP_swapImg(0,0,/*id*/\'mserv4\',/*url*/\'buttons/but_" + mth + "1.jpg\')\"");
document.write("onmousedown=\"FP_swapImg(1,0,/*id*/\'mserv4\',/*url*/\'buttons/but_" + mth + "3.jpg\')\"");
document.write("onmouseup=\"FP_swapImg(0,0,/*id*/\'mserv4\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"></a>");

idx = idx + 1;
if (idx > 11)
  {idx = 0};
mth = month[idx];
alt = "\"" + nam[idx] + "\"";
document.write("<a href=\"services_" + mth + ".html\">");
document.write("<img style=\"border: 0\" id=\"serv5\"");
document.write("src=\"buttons/but_" + mth + "1.jpg\" height=\"20\" width=\"50\" alt=" + alt);
document.write("onmouseover=\"FP_swapImg(1,0,/*id*/\'mserv5\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"");
document.write("onmouseout=\"FP_swapImg(0,0,/*id*/\'mserv5\',/*url*/\'buttons/but_" + mth + "1.jpg\')\"");
document.write("onmousedown=\"FP_swapImg(1,0,/*id*/\'mserv5\',/*url*/\'buttons/but_" + mth + "3.jpg\')\"");
document.write("onmouseup=\"FP_swapImg(0,0,/*id*/\'mserv5\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"></a>");

idx = idx + 1;
if (idx > 11)
  {idx = 0};
mth = month[idx];
alt = "\"" + nam[idx] + "\"";
document.write("<a href=\"services_" + mth + ".html\">");
document.write("<img style=\"border: 0\" id=\"serv6\"");
document.write("src=\"buttons/but_" + mth + "1.jpg\" height=\"20\" width=\"50\" alt=" + alt);
document.write("onmouseover=\"FP_swapImg(1,0,/*id*/\'mserv6\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"");
document.write("onmouseout=\"FP_swapImg(0,0,/*id*/\'mserv6\',/*url*/\'buttons/but_" + mth + "1.jpg\')\"");
document.write("onmousedown=\"FP_swapImg(1,0,/*id*/\'mserv6\',/*url*/\'buttons/but_" + mth + "3.jpg\')\"");
document.write("onmouseup=\"FP_swapImg(0,0,/*id*/\'mserv6\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"></a>");

idx = idx + 1;
if (idx > 11)
  {idx = 0};
mth = month[idx];
alt = "\"" + nam[idx] + "\"";
document.write("<a href=\"services_" + mth + ".html\">");
document.write("<img style=\"border: 0\" id=\"serv7\"");
document.write("src=\"buttons/but_" + mth + "1.jpg\" height=\"20\" width=\"50\" alt=" + alt);
document.write("onmouseover=\"FP_swapImg(1,0,/*id*/\'mserv7\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"");
document.write("onmouseout=\"FP_swapImg(0,0,/*id*/\'mserv7\',/*url*/\'buttons/but_" + mth + "1.jpg\')\"");
document.write("onmousedown=\"FP_swapImg(1,0,/*id*/\'mserv7\',/*url*/\'buttons/but_" + mth + "3.jpg\')\"");
document.write("onmouseup=\"FP_swapImg(0,0,/*id*/\'mserv7\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"></a>");

idx = idx + 1;
if (idx > 11)
  {idx = 0};
mth = month[idx];
alt = "\"" + nam[idx] + "\"";
document.write("<a href=\"services_" + mth + ".html\">");
document.write("<img style=\"border: 0\" id=\"serv8\"");
document.write("src=\"buttons/but_" + mth + "1.jpg\" height=\"20\" width=\"50\" alt=" + alt);
document.write("onmouseover=\"FP_swapImg(1,0,/*id*/\'mserv8\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"");
document.write("onmouseout=\"FP_swapImg(0,0,/*id*/\'mserv8\',/*url*/\'buttons/but_" + mth + "1.jpg\')\"");
document.write("onmousedown=\"FP_swapImg(1,0,/*id*/\'mserv8\',/*url*/\'buttons/but_" + mth + "3.jpg\')\"");
document.write("onmouseup=\"FP_swapImg(0,0,/*id*/\'mserv8\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"></a>");

idx = idx + 1;
if (idx > 11)
  {idx = 0};
mth = month[idx];
alt = "\"" + nam[idx] + "\"";
document.write("<a href=\"services_" + mth + ".html\">");
document.write("<img style=\"border: 0\" id=\"serv9\"");
document.write("src=\"buttons/but_" + mth + "1.jpg\" height=\"20\" width=\"50\" alt=" + alt);
document.write("onmouseover=\"FP_swapImg(1,0,/*id*/\'mserv9\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"");
document.write("onmouseout=\"FP_swapImg(0,0,/*id*/\'mserv9\',/*url*/\'buttons/but_" + mth + "1.jpg\')\"");
document.write("onmousedown=\"FP_swapImg(1,0,/*id*/\'mserv9\',/*url*/\'buttons/but_" + mth + "3.jpg\')\"");
document.write("onmouseup=\"FP_swapImg(0,0,/*id*/\'mserv9\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"></a>");

idx = idx + 1;
if (idx > 11)
  {idx = 0};
mth = month[idx];
alt = "\"" + nam[idx] + "\"";
document.write("<a href=\"services_" + mth + ".html\">");
document.write("<img style=\"border: 0\" id=\"serv10\"");
document.write("src=\"buttons/but_" + mth + "1.jpg\" height=\"20\" width=\"50\" alt=" + alt);
document.write("onmouseover=\"FP_swapImg(1,0,/*id*/\'mserv10\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"");
document.write("onmouseout=\"FP_swapImg(0,0,/*id*/\'mserv10\',/*url*/\'buttons/but_" + mth + "1.jpg\')\"");
document.write("onmousedown=\"FP_swapImg(1,0,/*id*/\'mserv10\',/*url*/\'buttons/but_" + mth + "3.jpg\')\"");
document.write("onmouseup=\"FP_swapImg(0,0,/*id*/\'mserv10\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"></a>");

idx = idx + 1;
if (idx > 11)
  {idx = 0};
mth = month[idx];
alt = "\"" + nam[idx] + "\"";
document.write("<a href=\"services_" + mth + ".html\">");
document.write("<img style=\"border: 0\" id=\"serv11\"");
document.write("src=\"buttons/but_" + mth + "1.jpg\" height=\"20\" width=\"50\" alt=" + alt);
document.write("onmouseover=\"FP_swapImg(1,0,/*id*/\'mserv11\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"");
document.write("onmouseout=\"FP_swapImg(0,0,/*id*/\'mserv11\',/*url*/\'buttons/but_" + mth + "1.jpg\')\"");
document.write("onmousedown=\"FP_swapImg(1,0,/*id*/\'mserv11\',/*url*/\'buttons/but_" + mth + "3.jpg\')\"");
document.write("onmouseup=\"FP_swapImg(0,0,/*id*/\'mserv11\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"></a>");

idx = idx + 1;
if (idx > 11)
  {idx = 0};
mth = month[idx];
alt = "\"" + nam[idx] + "\"";
document.write("<a href=\"services_" + mth + ".html\">");
document.write("<img style=\"border: 0\" id=\"serv12\"");
document.write("src=\"buttons/but_" + mth + "1.jpg\" height=\"20\" width=\"50\" alt=" + alt);
document.write("onmouseover=\"FP_swapImg(1,0,/*id*/\'mserv12\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"");
document.write("onmouseout=\"FP_swapImg(0,0,/*id*/\'mserv12\',/*url*/\'buttons/but_" + mth + "1.jpg\')\"");
document.write("onmousedown=\"FP_swapImg(1,0,/*id*/\'mserv12\',/*url*/\'buttons/but_" + mth + "3.jpg\')\"");
document.write("onmouseup=\"FP_swapImg(0,0,/*id*/\'mserv12\',/*url*/\'buttons/but_" + mth + "2.jpg\')\"></a>");

document.write("</div>");
}
