
//pict array holds the icon for the event
//the first argument is currently unused. The icons will be
// inserted into the array in the order, first in etc.
//event array holds the location to go to on the click on icon and should
//be in the same order as the icon list.
//currently the table can hold 12 icons. If more are needed the
//.js program called event_table.js needs to be modified.
//text array is the message to be displayed below the icon.
//the first and third arguments are used as follows:
//0 means no CR, 1 adds a CR. Arg1 before the text, arg3 after the text.
// THE LAST THREE ENTRIES IN THIS FILE ARE FOR SPECIAL EVENTS
// CHANGE THE TEXT_ARRAY DATA TO REFLECT THE TEXT YOU WOULD LIKE TO HAVE DISPLAYED
//IF YOU DESIRE A CARRAIGE RETURN WITHIN YOUR TEXT USE <BR> TO INSERT THE CR
// BE SURE THAT THE QUOTES AND COMMAS ARE CORRECT OR THE PROGRAM WILL BOMB.
//CREATE AN HTML FILE WITH THE FILE NAME Specialx.html where the x corresponds to
// the position in the array of choices, ie Special1.html is for the bottom left event.
//Special2.html is for the bottom center event etc. Please note that the capital S is required.
//UPLOAD YOUR html FILE TO THE PAGES DIRECTORY ANY PICTURES YOU HAVE USED TO THE DESIRED DIRECTORY. (Your choice)

//TOP LEFT EVENT
pict_array(0,"pictures/EASTER/Easter_Blnk.jpg");
event_array(0,"nu/Easter/index.html");
text_array(1,"Easter Sunday.",0);

//TOP CENTER EVENT
pict_array(1,"pictures/CornedBeef/cornedbeefblnk.jpg");
event_array(1,"nu/CornedBeef/index.html");
text_array(1,"Corned Beef Dinner & White elephant sale",0);

//TOP RIGHT EVENT
pict_array(2,"pictures/Power_Baseball-June_20,_2009/Power_Baseball-blnk.jpg");
event_array(2,"nu/PowerBaseball/index.html");
text_array(1,"Power Baseball",0);

//CENTER LEFT EVENT
pict_array(3,"nu/GrdBrk/Photos_files/Media/Grdbrk01/Grdbrk01.jpg");
event_array(3,"nu/Grdbrk/index.html");
text_array(1,"Ground Breaking Ceremony at DHS",0);

//2nd row CENTER EVENT
pict_array(4,"pictures/Spaghetti/Spaghetti_blnk.jpg");
event_array(4,"nu/Spaghetti/index.html");
text_array(1,"Spaghetti Dinner",0);

//2nd row RIGHT EVENT
pict_array(5,"pictures/Pastors30th/Pastors30th20.jpg");
event_array(5,"nu/Pastors30th/index.html");
text_array(1,"Potluck celebrating Pastor Millers<br>30th anniversary of his ordination.");

//3rd row row LEFT EVENT
pict_array(6,"nu/Piano/Photos_files/Media/New%20Piano-1/New%20Piano-1.jpg");
event_array(6,"nu/Piano/index.html");
text_array(1,"<font size='+1'>New piano dedication</font>",1);

//3rd row CENTER EVENT
event_array(7,"nu/LWMLChristmas/index.html");
text_array(1,"<font size='+1'>Reserved for coming attractions</font>",1);

//3rd row RIGHT EVENT
//pict_array(8,"nu/Special1/St._Patties_Day_files/Media/IMG_0408/IMG_0408.jpg");
event_array(8,"nu/Special1/index.html");
text_array(1,"<font size='+1'>Reserved for coming attractions</font>",1);

//BOTTOM LEFT EVENT
event_array(9,"nu/Special2/index.html");
text_array(1,"<font size='+1'>Reserved for coming attractions</font>",1);

//BOTTOM CENTER EVENT
event_array(10,"nu/Special3/index.html");
text_array(1,"<font size='+1'>Reserved for coming attractions</font>",1);

//BOTTOM RIGHT EVENT
event_array(11,"nu/Special4/index.html");
text_array(1,"<font size='+1'>Reserved for coming attractions</font>",1);



