ÿþ<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta HTTP-EQUIV="REFRESH" content="0; url=http://www.first-presbyterian-church-32034.org/"> <!--<embed src="mp3/ChristmasMsg.MP3" autostart=true hidden=true repeat=false loop=false>--> <style type="text/css"><style type="text/css"> /*Example CSS for the one demo scroller*/ #pscroller2{ width: 200px; height: 28px; border: 1px solid black; padding: 3px; } #pscroller2 a{ text-decoration: none; } .someclass{ //class to apply to your scroller(s) if desired } </style> <script type="text/javascript"> /*Example message arrays for the two demo scrollers*/ var pausecontent=new Array() pausecontent[0]='<a href="http://www.javascriptkit.com">JavaScript Kit</a><br />Comprehensive JavaScript tutorials and over 400+ free scripts!' pausecontent[1]='<a href="http://www.codingforums.com">Coding Forums</a><br />Web coding and development forums.' pausecontent[2]='<a href="http://www.cssdrive.com" target="_new">CSS Drive</a><br />Categorized CSS gallery and examples.' var pausecontent2=new Array() pausecontent2[0]='<a href="/mp3/010409e.MP3">01/04/09 - "Hey, You Got the Time?"</a>' pausecontent2[1]='<a href="/mp3/012509l.MP3">01/25/09 - "Second Chance God"</a>' pausecontent2[2]='<a href="/mp3/020109e.MP3">02/01/09 - "A New Teaching?"</a>' pausecontent2[3]='<a href="/mp3/020809l.MP3">02/08/09 - "A More Excellent Way"</a>' pausecontent2[4]='<a href="/mp3/021509e.MP3">02/15/09 - "When Love is Your Aim"</a>' pausecontent2[5]='<a href="/mp3/022209e.MP3">02/22/09 - "The Mystery of it All"</a>' pausecontent2[6]='<a href="/mp3/030109e.MP3">03/01/09 - "What Could Have Been"</a>' pausecontent2[7]='<a href="/mp3/030809e.MP3">03/08/09 - "The Fruit of Repentance in Always In Season"</a>' pausecontent2[8]='<a href="/mp3/031509e.MP3">03/15/09 - "Everyone Wants Something"</a>' pausecontent2[9]='<a href="/mp3/032209e.MP3">03/22/09 - "The Best Medicine for Sin"</a>' </script> <script type="text/javascript"> /*********************************************** * Pausing up-down scroller- © Dynamic Drive (www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit http://www.dynamicdrive.com/ for this script and 100s more. ***********************************************/ function pausescroller(content, divId, divClass, delay){ this.content=content //message array content this.tickerid=divId //ID of ticker div to display information this.delay=delay //Delay between msg change, in miliseconds. this.mouseoverBol=0 //Boolean to indicate whether mouse is currently over scroller (and pause it if it is) this.hiddendivpointer=1 //index of message array for hidden div document.write('<div id="'+divId+'" class="'+divClass+'" style="position: relative; overflow: hidden"><div class="innerDiv" style="position: absolute; width: 100%" id="'+divId+'1">'+content[0]+'</div><div class="innerDiv" style="position: absolute; width: 100%; visibility: hidden" id="'+divId+'2">'+content[1]+'</div></div>') var scrollerinstance=this if (window.addEventListener) //run onload in DOM2 browsers window.addEventListener("load", function(){scrollerinstance.initialize()}, false) else if (window.attachEvent) //run onload in IE5.5+ window.attachEvent("onload", function(){scrollerinstance.initialize()}) else if (document.getElementById) //if legacy DOM browsers, just start scroller after 0.5 sec setTimeout(function(){scrollerinstance.initialize()}, 500) } // ------------------------------------------------------------------- // initialize()- Initialize scroller method. // -Get div objects, set initial positions, start up down animation // ------------------------------------------------------------------- pausescroller.prototype.initialize=function(){ this.tickerdiv=document.getElementById(this.tickerid) this.visiblediv=document.getElementById(this.tickerid+"1") this.hiddendiv=document.getElementById(this.tickerid+"2") this.visibledivtop=parseInt(pausescroller.getCSSpadding(this.tickerdiv)) //set width of inner DIVs to outer DIV's width minus padding (padding assumed to be top padding x 2) this.visiblediv.style.width=this.hiddendiv.style.width=this.tickerdiv.offsetWidth-(this.visibledivtop*2)+"px" this.getinline(this.visiblediv, this.hiddendiv) this.hiddendiv.style.visibility="visible" var scrollerinstance=this document.getElementById(this.tickerid).onmouseover=function(){scrollerinstance.mouseoverBol=1} document.getElementById(this.tickerid).onmouseout=function(){scrollerinstance.mouseoverBol=0} if (window.attachEvent) //Clean up loose references in IE window.attachEvent("onunload", function(){scrollerinstance.tickerdiv.onmouseover=scrollerinstance.tickerdiv.onmouseout=null}) setTimeout(function(){scrollerinstance.animateup()}, this.delay) } // ------------------------------------------------------------------- // animateup()- Move the two inner divs of the scroller up and in sync // ------------------------------------------------------------------- pausescroller.prototype.animateup=function(){ var scrollerinstance=this if (parseInt(this.hiddendiv.style.top)>(this.visibledivtop+5)){ this.visiblediv.style.top=parseInt(this.visiblediv.style.top)-5+"px" this.hiddendiv.style.top=parseInt(this.hiddendiv.style.top)-5+"px" setTimeout(function(){scrollerinstance.animateup()}, 50) } else{ this.getinline(this.hiddendiv, this.visiblediv) this.swapdivs() setTimeout(function(){scrollerinstance.setmessage()}, this.delay) } } // ------------------------------------------------------------------- // swapdivs()- Swap between which is the visible and which is the hidden div // ------------------------------------------------------------------- pausescroller.prototype.swapdivs=function(){ var tempcontainer=this.visiblediv this.visiblediv=this.hiddendiv this.hiddendiv=tempcontainer } pausescroller.prototype.getinline=function(div1, div2){ div1.style.top=this.visibledivtop+"px" div2.style.top=Math.max(div1.parentNode.offsetHeight, div1.offsetHeight)+"px" } // ------------------------------------------------------------------- // setmessage()- Populate the hidden div with the next message before it's visible // ------------------------------------------------------------------- pausescroller.prototype.setmessage=function(){ var scrollerinstance=this if (this.mouseoverBol==1) //if mouse is currently over scoller, do nothing (pause it) setTimeout(function(){scrollerinstance.setmessage()}, 100) else{ var i=this.hiddendivpointer var ceiling=this.content.length this.hiddendivpointer=(i+1>ceiling-1)? 0 : i+1 this.hiddendiv.innerHTML=this.content[this.hiddendivpointer] this.animateup() } } pausescroller.getCSSpadding=function(tickerobj){ //get CSS padding value, if any if (tickerobj.currentStyle) return tickerobj.currentStyle["paddingTop"] else if (window.getComputedStyle) //if DOM2 return window.getComputedStyle(tickerobj, "").getPropertyValue("padding-top") else return 0 } </script> <script type="text/javascript" language="JavaScript"> <!-- Copyright 2002 Bontrager Connection, LLC // // Type the number of images you are rotating. NumberOfImagesToRotate = 9; NumberOfImages = 8; BurtonImagesToRotate = 5; // Specify the first and last part of the image tag. FirstPart = '<img src="Images/LocalArea/LocalPics_00'; LastPart = '.jpg" height="180" width="240">'; FrontPart = '<img src="Images/LocalArea/bldg_00'; EndPart = '.jpg" height="180" width="240">'; FrontPartBurton = '<img src="Images/Burtonrecept0'; EndPartBurton = '.jpg" height="240" width="320">'; function printImage() { var r = Math.ceil(Math.random() * NumberOfImagesToRotate); document.write(FirstPart + r + LastPart); } function printImage1() { var s = Math.ceil(Math.random() * NumberOfImages); document.write(FrontPart + s + EndPart); } function printImageBurton() { var t = Math.ceil(Math.random() * BurtonImagesToRotate); document.write(FrontPartBurton + t + EndPartBurton); } //--> </script> <title>First Presbyterian Church, Fernandina Beach, FL</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <!-- Update both meta-tags with descriptive info about your church --> <meta name="keywords" content="First Presbyterian Church, Fernandina Beach, FL, 32034, 904 2613837, pastors names, Amelia Island, add additional keywords that people may use to find a church in your community"> <meta name="description" content="A friendly and open, scripture based Christian church seeking a closer walk with God."> <!-- Begin style sheets --> <style type="text/css"> <!-- A.class1:link {color:#0099CC; text-decoration:none;} A.class1:visited {color:#FF0033; text-decoration:none;} A.class1:active {color:#33FF99; text-decoration:none;} A.class1:hover {color:#0099CC; text-decoration:underline;} .maintext { font-family: Arial, Helvetica, sans-serif; font-size: 0.8em; line-height: 1.2em; } .menuNorm { font-family: Arial, Helvetica, sans-serif; font-size: 0.75em; color: #866C33; line-height: 15px; border-top-width: 1px; border-left-style: none; border-top-color: #FFFFFF; border-right-color: #FFFFFF; border-bottom-color: #FFFFFF; border-left-color: #FFFFFF; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; font-weight: bold; background-color:#DEDEDD; height: 15px; width:148px; } .menuHigh { font-family: Arial, Helvetica, sans-serif; font-size: 0.75em; color: #866C33; line-height: 15px; border-top-width: 1px; border-left-style: none; border-top-color: #FFFFFF; border-right-color: #FFFFFF; border-bottom-color: #FFFFFF; border-left-color: #FFFFFF; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; font-weight: bold; background-color:#BCC4CF; height: 15px; width:148px; } .footer { font-family: Arial, Helvetica, sans-serif; font-size: 0.6em; line-height: 1em; color: #8F9CAC; word-spacing: 3px; } p { margin-top: 0px; margin-bottom: 7px; } .menuNorm a:link { color: #866C33; text-decoration: none; } .menuNorm a:visited { color: #866C33; text-decoration: none; } .blackover a:hover { color: #FFFFFF; text-decoration: none; } .menuNorm a:hover { color: #866C33; text-decoration: none; } .menuHigh a:link { color: #866C33; text-decoration: none; } .menuHigh a:visited { color: #000000; text-decoration: none; } .menuHigh a:hover { color: #866C33; text-decoration: none; } .footer a:hover { color: #000000; } .footer a:link { color: #00A0C6; text-decoration: underline; } .footer a:visited { color: #000000; } .lighttext { font-family: Arial, Helvetica, sans-serif; font-size: 0.8em; color: #FEF0B9; } .headline { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 1em; color: #000000; } .welcome { font-family: Times New Roman, Times, serif; font-size: 2.0em; letter-spacing: 5px; color: #FFFFFF; } .church { font-family: Times New Roman, Times, serif; font-size: 3.5em; color: #A0C07C; font-style: italic; } .smallertext { font-family: Arial, Helvetica, sans-serif; font-size: 0.75em; line-height: normal; } .whitetext { font-family: Arial, Helvetica, sans-serif; font-size: .8em; color: #FFFFFF; } .date { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 0.7em; color: #9AA9C0; } h2 { font-family: Arial, Helvetica, sans-serif; color: #8A9CB6; font-size: 1.4em; } .brown { color: #866C33; } --> </style> <!-- End style sheets --> </head> <body bgcolor="#FFFFFF" text="#000000" link="#00A0C6" vlink="#00A0C6" alink="#000000" leftmargin="0" topmargin="0"> <table width="760" border="0" cellspacing="0" cellpadding="0"> <tr> <td valign="top"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td bgcolor="#8E7F4F"><img src="IMAGES/spacer.gif" width="15" height="5" /></td> </tr> </table> <table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF"> <tr> <td><img src="IMAGES/spacer.gif" width="15" height="3" /></td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td height="139" background="IMAGES/header.jpg"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td><div align="center"><img src="IMAGES/PCUSA_logo.gif" width="70" height="94" /></div></td> <td class="welcome">FIRST PRESBYTERIAN CHURCH<BR> Fernandina Beach, Florida</td> </tr> </table></td> </tr> </table> <table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF"> <tr> <td><img src="IMAGES/spacer.gif" width="15" height="3" /></td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td height="25" bgcolor="#8E7F4F" class="whitetext"> <div align="center"><strong>&#8220;A caring congregation nurturing spiritual growth and demonstrating the love of Jesus Christ.&#8221;<img src="IMAGES/spacer.gif" width="15" height="15" /></strong></div></td> </tr> <tr> <td height="20" bgcolor="#FFFFFF" class="date"> <div align="right"><strong> Let them first show piety at home. 1st Timothy 5:4 <img src="IMAGES/spacer.gif" width="17" height="15" /></strong></div></td> <tr> </tr> </table> <table width="760" <tr> <td align="center"><h1><font color="blue">Our new website is live!<br>Click <a href="http://www.first-presbyterian-church-32034.org/">here</a> to start exploring it.</h1><br>This site will no longer be updated.</center></td> </tr> </table> <!-- <center> <table border="2" bordercolor="#c86260" bgcolor="#ffffcc" width="50%" cellspacing="5" cellpadding="3"> <tr> <td align="center" colspan="2"><h1>1st Annual FPC Film Festival<br>Friday, Feb 26 - Sunday, Feb 28</h> </td> </tr> <tr> <td valign="top"><img src="IMAGES/savinggod-poster.jpg" width="201" height="278"><br>Friday, Feb 26 at 7:00 pm </td> <td><img src="IMAGES/FaithLikePotatoes.jpg" width="267" height="200"><br>Sunday, Feb 28 at 2:00 pm </td> </tr> <tr> <td colspan="2"><img src="IMAGES/Fireproof.jpg" width="526" height="105"><br>Saturday, Feb 27 at 7:00 pm </td> </tr> <tr> <td><img src="IMAGES/LiliesOftheField.jpg" width="100" height="100"><br>Saturday, Feb 27 at 2:00 pm </td> <td> <table border="1" cellspacing="0" cellpadding="0"> <tr> <td align="center"colspan="3"><b>FPC Film Festival Schedule<br>Shown in The Anchor - FREE POPCORN!</b> </td> </tr> <tr> <td><b>Day, Date</b></td> <td><b>Time</b></td> <td><b>Movie Title</b></td> </tr> <tr> <td>Friday, 2/26</td> <td>7:00 pm</td> <td><a href="http://www.christian-movie.com/saving_god_review.html">Saving God</a></td> </tr> <tr> <td>Saturday, 2/27</td> <td>2:00 pm</td> <td><a href="http://www.homevideos.com/revnclas/84.htm">Lilies of the Field</a></td> </tr> <tr> <td>Saturday, 2/27</td> <td>7:00 pm</td> <td><a href="http://www.fireproofthemovie.com/index2.php">Fireproof</a></td> </tr> <tr> <td>Sunday, 2/28</td> <td>2:00 pm</td> <td><a href="http://www.faithlikepotatoes.com/Faith_like_Potatoes/Faith_like_Potatoes.html">Faith Like Potatoes</a></td> </tr> </table> </td> </tr> </center> </table> </center> <table> <tr> <td><img src="images/WedNightSuppers.jpg" width="195"></td> <td><h1><center>Please join us Wednesday nights at 5:30 in the 1st Cafe for fun, fellowship and fine food. <br>This week's program will be entitled "Art and Conflict" with Pastor Bruce sharing with us what he discovered at the conference he attended in Italy</center></h1></td> </tr> </table> --> <!-- <table> <tr> <td><img src="images/Youth_Sunday.gif" width="175"></td> <td><h1><center>Thanks to our Youth for a wonderful Youth Sunday worship experience.<br>If you missed attending, you can listen to it by clicking <a href="YouthSunday.htm">here.</a></center></h1></td> </tr> </table> <table> <tr><td>Quote: If a man cannot be a Christian where he is, he cannot be a Christian anywhere.-- Henry Ward Beecher<td><tr> </table> <table> <tr> <td width=700><center><h3>Our <a href="CIF-CLC.pdf">Church Information Form (CIF)</a> has been approved <br>and posted on the Presbyterian "Church Leadership Connection" website, <br>where interested candidates can review it.</h3></center></td> <tr> </table> --> <!-- <table> <tr> <td><img src="images/ChristmasChildBoxes230x307.JPG" width="175"></td> <td><h1><center>A grand parade of shoeboxes for the Operation Christmas Child <br>were dedicated on Sunday before transport to the coordinating facility.<br></center></h1></td> </tr> </table> --> <!-- <table> <tr> <td><img src="images/SetClocksBacka.gif" width="175"></td> <td><h1><center>Don't forget to set your clocks back one hour Saturday night.<br>So you can be on time for church! <br>Congregational meeting at at 10:50 am.</center></h1></td> </tr> </table> --> <!-- <table> <tr> <td><img src="images/StatementOfFaith.jpg" width="375"></td> <td><h1><center>After much discussion, listening, prayer, and study of scriptures, our Statement of Faith Task Force has presented and the Session has approved a <br><a href="newsletters\2011\august.pdf#page=10">FPC Statement of Faith</a></center></h1></td> </tr> </table> --> <!-- <table> <tr> <td><img src="images/MissionTrip.GIF" width="181"><br><center></center></td> <td><h1><center>Mission Trip Family Dinner<br>Wednesday, Sept 7, 5:30 PM<br>Come and learn more about the mission trips to Mississippi and Louisana.</center></h1></td> </tr> --> <!-- <table> <tr> <td><img src="images/MissionTeam.jpg" width="400"><br><center>"Slices of Life" portfolio!</center></td> <td><h1><center>Click <a href="http://www.slicesoflifestudio.com/fpc_nola_2011">here</a> to see the "Slices of Life" portfolio slide show of great pictures taken while our wonderful team of volunteers was working in New Orleans.</center></h1></td> </tr> </table> --> <!-- <table> <tr> <td><img src="images/2011ShrimpFestival.jpg" width="400"></td> <td><h1><center>Due to mid-day Shrimp Festival crowd issues, please join us in the 8:30 Sunday morning worship service and/or the evening Contemporary Worship service at 5:30 in the Anchor.</center></h1></td> </tr> </table> --> <!-- <table> <tr> <td width="190"><img src="images/church-directory.jpg"></td> <td width="550"><h1>Our new church directory won't be complete without your picture.</h1> Pictures will be taken May 2, 3, 4, 12, 13 from 2:00 pm to 9:20 pm and May 14 from 9:30 am to 5:10 pm. <br> Please don't miss your portrait appointment.<br> Please provide group activity snapshots so the editors have lots to choose from.<br> Volunteers are needed in May as photo session coordinators - Contact Christine Dobbins.<br> </td> </tr> <tr> <td colspan="2"><h1><center>Help make this our best church directory ever!!!!!</center></h1></td> </tr> <tr> <td>-</td> <td>-</td> </tr> </table> --> <!-- <table> <tr> <td width="240"><P align="center"> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="240" HEIGHT="320" id="crosses"> <PARAM NAME="movie" VALUE="/IMAGES/Crosses/crosses.swf"> <PARAM NAME="quality" VALUE=high> <PARAM NAME="bgcolor" VALUE=#FFFFFF> <EMBED src="crosses.swf" quality=high bgcolor=#FFFFFF WIDTH="240" HEIGHT="320" NAME="crosses" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED> </OBJECT> </td> <td><h1>All are encouraged to take a look at<br> the beautiful collection of handmade <br> crosses on display in the Anchor <br> window. Only some of which are<br> shown here. Thanks to all who<br> loaned their crosses.</h1></td> </tr> </table> --> <!-- <table> <tr> <td width="684"><center><a href="http://gamc.pcusa.org/ministries/pda/faq-japan-earthquake-and-tsunami/">FAQs</a> on Presbyterian Disaster Assistance response to the Japan earthquake/tsunami/nuclear disaster</center></td> </tr> </table> --> <!-- <table> <tr><td><center><a href="./PhotoAlbum/BurtonGoingAway/Burton.wmv"><h1><img src="./PhotoAlbum/BurtonGoingAway/2009_072601.JPG" width="456" height="342"><br>We celebrate the Burton Family's time with us!</H><br>Click here to see more pictures.</a></center></td><tr> </table> --> <!-- <table> <tr><td width="33%"><img src="IMAGES/MinistryFair.jpg"><td width="67%"><center><H1>Come and learn about all the<br>hardworking committees and<br>great programs at FPC.</H1><tr><td></td> </tr> <td><tr></tr></td> </table> --> <!-- <table> <tr> <td width=200> <img src="IMAGES/yardsale_3840a.gif"> <td width=464><center><h1><strong class="brown">Annual Garage Sale</center><br> Saturday, July 18th<br> 9 AM - 1 PM<br> Jim Thomas Fellowship Hall<br> <br> </center></td></strong></h> </tr> </table> </tr> <tr> <td><center><h3><b>Don't forget to bring in your donations for the church Garage Sale this week.<br> A fun group of helpers are needed this week for preparing for the sale.<br> Pickup trucks and drivers are needed at 2 PM Saturday for clean up.</h></center></b></td> </td> <td bgcolor="#EAEDF4">&nbsp;</td> </tr> </table> --> <!-- <table> <tr> <td width=175><img height="250" width="175" src="IMAGES/FallingUpward.jpg"></a></td> <td width=375><center><h3>Book Box Lunch<br> Chew & Review<br> Tuesday, October 18<br> 11:30am - 1:30pm in Jim Thomas Hall</h3> Dr. John Ragsdale (leader of the Presbytery Book Club) will facilitate a book discussion of Richard Rohr's <u>Falling Upward: A Spirituality for the Two Halves of Life</u>. Register for the $8 gourmet catered lunch (Old South Yankee) and pick up your $12 copy of the book at the church office by Oct 14.</h3><br></center></td> <td width=200><img height="200" width="200" src="IMAGES/JohnRagsdale.jpg"><br><center>Dr. John Ragsdale</center></a></td> </tr> </table> --> <!-- <table> <tr> <td width=226><center><img src="images/BIGfair-trade-button_png.png"</center></td> <td colspan="2" width=500><center><h2><font color=blue>Please join us between 9 AM and 3 PM Saturday, October 8th for the Fair Trade Market and complete your Christmas shopping early this year.</td> </tr> </table> <!-- <table> <tr> <td width="684"><center><href <img src="images/mcc.jpg"><br><h1>Please join us April 16-18 at the<br>Montgomery Conference Center<br> for our Annual Family Weekend</h1></td> </tr> </table> --> <!-- <table> <tr> <td width=336><img src="IMAGES/1957Teacher.bmp" </td> <td width=464><center><h1><font color=black><a href="http://inlinethumb02.webshots.com/42241/1032678996026949739S500x500Q85.jpg">Watch Doris Davis</a><br><br>reenact a<br><br>teacher<br><br>from the past.</h1></center></td> </tr> </table> --> <!-- <table> <tr> <td width=336><img src="/images/MinistryFair_1739c.gif"</td> <td width=464><center><h1><font color=black>Ministry Fair<br>August 24, 2008<br>Jim Thomas Hall<br>9:30 AM - 12:45 PM<br></h1></center></td> </tr> </table> --> <!-- <table> <tr> <td width=320><img src="images/Pandamania320x480mobile.jpg"</td> <td width=660><center><h1><font color=black>Don't miss <br>Vacation Bible School<br>July 13-18, 9 am - 12 pm<br>A summer time treat for children to learn bible principles, learn new songs, do crafts, and play games all centered on a common theme. Adults volunteers and Children can register <a href="http://www.groupvbspro.com/vbs/ez/pres">here</a></h1></center></td> </tr> </table> --> <!-- <table> <tr> <td colspan="4"><center><h1>Free Pizza, Movie & Popcorn in the ANCHOR</h1></center></td> </tr> <td> <td width=161><img width=161 src="images/kung_fu_panda.jpg"</td> <td width=390><center><h1><font color=black>August 13 at 6:00pm<br><br>Call 261-3837 by noon <br><br>for Reservations<br><br></center></td> <td width=170><img src="images/dinner&amoviea.gif"</td> </tr> </table> --> <!-- <table> <tr> <td width=140><img src="images/pancake_breakfast.gif"</td> <td width=520><center><h2><font color=blue>Rally Day<br>Sunday, August 29th<br>Pancake Breakfast<br> In Jim Thomas Hall @ 9:50 AM<br>For Adults, Youth and Children<br><br> <td width=140><img src="images/rallyday_kickoffa.gif"</td> </tr> </table> --> <!-- <table> <tr> <td><img src="images/contemporary.jpg"</td> <td width=660><center><h2><font color=blue><br><br>Please join us at 5:30 PM<br>next Sunday Evening (9/19)<br> in the Anchor for a <br>fresh and vibrant praise <br>and worship experience.<br> <br>All are invited to join us<br>in worship of our risen savior.<br><br> </tr> </table> --> <!-- <table> <tr> <td><img src="images/FairTradeFestival.jpg"></td> <td width=660><center><h2><font color=blue><br><br>Beautiful Handcrafted items<br>from around the world.<br><br>9:30 AM - 3:00 PM, Saturday (10/9)<br> in the Anchor<br><br>Proceeds directly benefit ministries in<br>Africa, India, Haiti, and South America<br> <br><br><br><br> </tr> </table> --> <!-- <table width="760"> <tr> <td align="center"><h1>You've got to see this.<br>Jesus Thoughout the Bible - Jack Stockton</h1></td> </tr> <tr> <td align="center"><object height="255" width="400" type="application/x-shockwave-flash" data="http://www.godtube.com/resource/mediaplayer/5.3/player.swf"><param name="movie" value="http://www.godtube.com/resource/mediaplayer/5.3/player.swf"> <param name="allowfullscreen" value="true"> <param name="allowscriptaccess" value="always"><param name="wmode" value="opaque"> <param name="flashvars" value="file=http://www.godtube.com/resource/mediaplayer/76WDLLNX.file&image=http://www.godtube.com/resource/mediaplayer/76WDLLNX.jpg&screencolor=000000&type=video&autostart=true&playonce=true&skin=http://www.godtube.com//resource/mediaplayer/skin/carbon/carbon.zip&logo.file=http://media.salemwebnetwork.com/godtube/theme/default/media/embed-logo.png&logo.link=http://www.godtube.com/watch/%3Fv%3D76WDLLNX&logo.position=top-left&logo.hide=false&controlbar.position=over"></object></h> </td> </table> --> <!-- <table> <tr> <td><img src="images/RockSolid.jpg"</td> <td width=660><center><h2><font color=blue><br><br>Please join us at 5:30 PM<br>this Sunday Evening (12/19)<br> in the Anchor for a <br>fresh and vibrant praise <br>and worship experience.<br> <br>All are invited to join us<br>in worship of our risen savior.<br><br> </tr> </table> --> <!-- <td width=226><center><img src="images/OpChristmasChild.jpg"</center></td> <td colspan="2" width=500><center><h2><font color=blue>Please join us in <a href="http://www.samaritanspurse.org/index.php/OCC/">Operation Christmas Child </a>and share the joy of Christmas morning with a poor child in a foreign land. Choose "Boy" or "Girl" and an age bracket, decorate and fill a plastic shoe box with age and gender appropriate gifts.</td> </tr> </table> <table> <tr> <td colspan="2" width=250><center><h2><font color=blue>Bring your filled box to church with $7 for transporting it to a child in a foreign country.<br></td> <td><img src="images/OCCBoyGirlTags.jpg" width="460"></td> </tr> </table> --> <!-- <table> <tr> <td width=226><center><img src="images/BIGfair-trade-button_png.png"</center></td> <td colspan="2" width=500><center><h2><font color=blue>Please join us between 9 AM and 3 PM Saturday, October 8th for the Fair Trade Market and complete your Christmas shopping early this year.</td> </tr> </table> --> <!-- <center><h1>How it might have happened if they had Facebook over 2000 years ago.</h1></center><br> <object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/sghwe4TYY18?fs=1&amp;hl=en_US&amp;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/sghwe4TYY18?fs=1&amp;hl=en_US&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object> --> <!-- <table> <tr> <td><img src="images/BabyJesus&Mary.JPG" width="400"></td> <td><h1><center>Merry christmas!</center></h1></td> </tr> </table> --> <!-- <table border=1 width="840" height="302"> <tr> <td><img src="images/Forrestphoto.JPG" width="180" height="302"></td> <td width=660><center><h2><font color=black>The Forrest Foxworth family has arrived.<br>Drop by the church office and welcome<br>Forrest to the FPC family<br><br>See Forrest's full bio on page 9 of the<br><a href="newsletters/2010/november.pdf#page=9"> November Newlsetter.</a></td> </tr> </table> --> <!--This following table can be turned off by moving the end of this tag to after the close table tag <table width="760" border="0" cellspacing="0" cellpadding="0"> <tr> <td><center><h2><font color=black><bold>First Presbyterian Church is putting together a new Church <br>Pictoral Directory and would love to include you in it!</center></bold></H2></td> </tr> <tr> <td><center><img src="IMAGES/lifetouch.jpg" width="640" height="113"></center></td> </tr> <tr> <td><center>Please take a look at these two references: <a class="blackover" href="PortraitSittingGuide.pdf"> Portrait Sitting Guide </a> and <a href="LifeTouchPriceSheet.pdf"> Lifetouch Price Sheet</a></center></td> </tr> <tr> <td><center>Then click <a href="http://www.appointment-plus3.com/ap/1stpresfb/index.php?page=10"> here </a> to schedule your portrait sitting on Friday, Feb 22nd or Saturday, Feb 23rd.</center><td> </tr> </table> --> <table width="760" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="148" valign="top" bgcolor="#DEDEDD"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td bgcolor="#DEDEDD"><img src="IMAGES/spacer.gif" width="15" height="7" /></td> <td width="7" height="7"><img src="IMAGES/ur_corner_dark.gif" width="7" height="7" /></td> </tr> </table> </td> <td width="612" rowspan="2" valign="top"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="15" rowspan="2" bgcolor="#EAEDF4"><img src="IMAGES/spacer.gif" width="15" height="15" /></td> <td bgcolor="#EAEDF4" rowspan="2" valign="top"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td bgcolor="#EAEDF4"><h2>Welcome to the First Presbyterian Church web site. </h2></td> </tr> <tr> <td bgcolor="#EAEDF4" class="maintext"> <p>Since First Presbyterian Church was organized in 1858, our church has developed a rich history. We are excited to see where God will lead us in the future. Explore our site, check out our programs, get a feel for our worship service, and notice the many opportunities for service, outreach, fellowship, worship and spiritual growth available to you at First Presbyterian. Please come and join us, contributing your time and talents to further God's master plan for the world.</p> </td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td bgcolor="#EAEDF4"><hr size="1" noshade="noshade" color="#BFC8D8" /></td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td height="25" valign="top" bgcolor="#EAEDF4" class="headline"><strong class="brown">Our Ministers:</strong></td> </tr> <tr> <td bgcolor="#EAEDF4" class="maintext"> <p>Everyone in the First Presbyterian Church congregation.<BR> </tr> <tr> </td> <td height="25" valign="top" bgcolor="#EAEDF4" class="headline"><strong class="brown">Our Clergy:</strong></td> </tr> <tr> <td bgcolor="#EAEDF4" class="maintext"> Our Head Pastor position is currently vacant.<br> Dr. Bruce Lancaster, Interim Pastor<br> Rev. Dr. Douglas Ganyo, Associate Pastor<br><br> </td> </tr> <tr> </td> <td height="25" valign="top" bgcolor="#EAEDF4" class="headline"><strong class="brown">Our Address:</strong></td> </tr> <tr> <td bgcolor="#EAEDF4" class="maintext"> <p>First Presbyterian Church<br> 9 North Sixth St., Fernandina Beach, FL 32034<br> Hours: Mon-Thru 9 am - 5 pm, Fri 9 am - Noon</p></td> </td> </tr> <td height="25" valign="top" bgcolor="#EAEDF4" class="headline"><strong class="brown">Our Presbytery:</strong></td> </tr> <tr> <td bgcolor="#EAEDF4" class="maintext"> <p><a href="http://www.staugpres.org/">Presbytery of St. Augustine</a><br> 1937 Univ. Blvd., Jacksonville, FL 32217<br> Hours: Mon-Thru 9 am - 5 pm, Fri 9 am - Noon<br> <a href="Overture.doc">Overture</a></p> </td> </tr> </table> <img src="IMAGES/spacer.gif" width="335" height="15" /> <td width="15" rowspan="2" bgcolor="#EAEDF4"><img src="IMAGES/spacer.gif" width="15" height="15" /></td> <td valign="top"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="7" height="7"><img src="IMAGES/ul_corner_blue.gif" width="7" height="7" /></td> <td bgcolor="#DFE4ED"><img src="IMAGES/spacer.gif" width="15" height="7" /></td> </tr> </table></td> <td width="15" rowspan="2" bgcolor="#DFE4ED"><img src="IMAGES/spacer.gif" width="15" height="15" />< </tr> <tr> <td valign="top" bgcolor="#DFE4ED"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr bgcolor="#DFE4ED"> <td height="25" valign="top" class="headline"><img src="IMAGES/spacer.gif" width="15" height="15" /></td> <td valign="top" class="headline"><strong class="brown">Worship Times</strong></td> </tr> <tr bgcolor="#DFE4ED"> <td class="maintext"> <p>&nbsp;</p></td> <td bgcolor="#DFE4ED" class="maintext"> <p>Please come join our community of worship on Sunday mornings at 8:30 a.m. or 11 a.m. in our Sanctuary on North 6th Street. <a href="bulletins\TraditionalWorship.pdf#page=2">Sample order of worship</a><BR><br> You can listen to selected recordings from our services on the <a href="choir.htm">Music Ministry</a> page and sermons on the <a href="sermons.htm">Sermons</a> page. </a></p> </a></p> <script type="text/javascript"> //new pausescroller(name_of_message_array, CSS_ID, CSS_classname, pause_in_miliseconds) new pausescroller(pausecontent2, "pscroller2", "someclass", 2000) </script> <p><strong></strong></p></td> </tr> <tr bgcolor="#DFE4ED"> <td height="25" valign="top" class="headline"><img src="IMAGES/spacer.gif" width="45" height="15" /></td> <!-- When there is breaking news to report on the front page, copy the following two <td>.... </td> blocks to this comment space, then modify the original to reflect the news. When the breaking news is no longer needed, copy the two <td></td> blocks back out to their original positions to replace the old breaking news--> <!-- <td valign="top" class="headline"><strong class="brown">Breaking News!</strong></td> --> </tr> <tr bgcolor="#DFE4ED"> <td class="maintext"> <p>&nbsp;</p></td> </tr> <tr bgcolor="#DFE4ED"> <td class="maintext"> <p>&nbsp;</p></td> <td bgcolor="#DFE4ED" class="maintext"> <p> Look through our great church library catalog as of 7/15/2009, sorted by either <a href="http://www.1stpres-fb.com/FPCLibraryByAuthor.asp"> author</a> or <a href="http://www.1stpres-fb.com/FPClibraryByTitle.asp"> title</a>.</td> </tr> <tr bgcolor="#DFE4ED"> <td height="25" valign="top" class="headline"><img src="IMAGES/spacer.gif" width="15" height="15" /></td> <td valign="top" class="headline"><strong class="brown">Read the Lectionary.</strong></td> </tr> <tr bgcolor="#DFE4ED"> <td class="maintext"> <p>&nbsp;</p></td> <td bgcolor="#DFE4ED" class="maintext"> <p>Please click <a href="http://www.pcusa.org/lectionary/">lectionary</a> to read today's lectionary scriptures from the PC USA site.</p> </tr> <tr bgcolor="#DFE4ED"> <td height="25" valign="top" class="headline"><img src="IMAGES/spacer.gif" width="45" height="15" /></td> <td bgcolor="#DFE4ED" class="maintext"> <p> See some fascinating <a href="http://apps.pcusa.org/tenyeartrends/report/20118/">Ten-Year Trends</a> for our church.</p> </td> </tr> <tr bgcolor="#DFE4ED"> <td height="25" valign="top" class="headline"><img src="IMAGES/spacer.gif" width="15" height="15" /></td> <td valign="top" class="headline"><strong class="brown">Get Directions to FPC.</strong></td> </tr> <tr bgcolor="#DFE4ED"> <td class="maintext"> <p>&nbsp;</p></td> <td bgcolor="#DFE4ED" class="maintext"> <p>Internet Explorer users can enter your start address into Google and get <a href="http://maps.google.com/maps?f=d&hl=en&saddr=&daddr=9+N.+6th+Street,+Fernandina+Beach,+FL">directions</a> to our church. Then use your "Back" button to return here.</p> </tr> </td> </tr> </table> <img src="IMAGES/spacer.gif" width="235" height="15" /></td> </table></td> </tr> <tr> <td bgcolor="#EAEDF4"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <!-- <tr>Click on a picture to see it larger, then use the browser's "Back" buttom to return. </tr> <tr> <td bgcolor="#EAEDF4"><img src="IMAGES/spacer.gif" width="15" height="15"></td> <td><a href="IMAGES/ChurchBuildings/ChurchFront.jpg"> <img src="IMAGES/ChurchBuildings/ChurchFront120x160.JPG" width="120" height="160"></a><BR><center>Our Sanctuary</center></td> <td><img src="IMAGES/spacer.gif" width="15" height="15"></td> <td><a href="IMAGES/ChurchBuildings/AngelDavis.jpg"> <img src="IMAGES/ChurchBuildings/AngelDavis160x120.JPG" width="160" height="120"></a><BR><center>Angel Davis Hall</center></td> <td><img src="IMAGES/spacer.gif" width="2" height="2"></td> <td><a href="IMAGES/ChurchBuildings/NoahsPlace.jpg"><img src="IMAGES/ChurchBuildings/NoahsPlace160x120.JPG" width="160" height="120"></a><BR><center>Noah's Place</center></td></tr> --> <td><img src="IMAGES/spacer.gif" width="30" height="15" /></td> <td> <script type="text/javascript" language="JavaScript"><!-- printImage(); //--></script> </td> <td><img src="IMAGES/spacer.gif" width="30" height="15" /></td> <td> <script type="text/javascript" language="JavaScript"><!-- printImage(); //--></script> </td> </td> <td><img src="IMAGES/spacer.gif" width="15" height="15" /></td> <td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="15" bgcolor="#EAEDF4"><img src="IMAGES/spacer.gif" width="15" height="15" /></td> <td height="40" bgcolor="#EAEDF4" class="footer"><strong>PHONE (904) 261-3837 &#8226; 9 N 6th St, Fernandina Beach, 32034 &#8226; <a href="mailto:churchoffice@1stpres-fb.com">churchoffice@1stpres-fb.com </a></strong></td> </tr> </table> </td> </tr> </table> </td> </tr> <tr> <td width="149" valign="top" bgcolor="#DEDEDD"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td bgcolor="#DEDEDD"><img src="IMAGES/spacer.gif" width="15" height="3" /></td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="menuHigh" onmouseover="this.className='menuHigh'" onmouseout="this.className='menuHigh'"> <div align="right"><a href="home.htm">Home</a><img src="IMAGES/spacer.gif" width="15" height="7" /></div></td> <td width="10" bgcolor="#DEDEDD">&nbsp;</td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td bgcolor="#DEDEDD"><img src="IMAGES/spacer.gif" width="15" height="7" /></td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="menuNorm" onmouseover="this.className='menuHigh'" onmouseout="this.className='menuNorm'"><div align="right"><a href="statement.htm">Mission Statement</a> <img src="IMAGES/spacer.gif" width="15" height="7" /></div></td> <td width="10" bgcolor="#DEDEDD">&nbsp;</td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td bgcolor="#DEDEDD"><img src="IMAGES/spacer.gif" width="15" height="7" /></td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="menuNorm" onmouseover="this.className='menuHigh'" onmouseout="this.className='menuNorm'"><div align="right"><a href="history.htm">Our History</a> <img src="IMAGES/spacer.gif" width="15" height="7" /></div></td> <td width="10" bgcolor="#DEDEDD">&nbsp;</td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td bgcolor="#DEDEDD"><img src="IMAGES/spacer.gif" width="15" height="7" /></td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="menuNorm" onmouseover="this.className='menuHigh'" onmouseout="this.className='menuNorm'"><div align="right"><a href="location.htm">Where We Are</a> <img src="IMAGES/spacer.gif" width="15" height="7" /></div></td> <td width="10" bgcolor="#DEDEDD">&nbsp;</td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td bgcolor="#DEDEDD"><img src="IMAGES/spacer.gif" width="15" height="7" /></td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="menuNorm" onmouseover="this.className='menuHigh'" onmouseout="this.className='menuNorm'"><div align="right"><a href="events.htm">Special Events</a> <img src="IMAGES/spacer.gif" width="15" height="7" /></div></td> <td width="10" bgcolor="#DEDEDD">&nbsp;</td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td bgcolor="#DEDEDD"><img src="IMAGES/spacer.gif" width="15" height="7" /></td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="menuNorm" onmouseover="this.className='menuHigh'" onmouseout="this.className='menuNorm'"><div align="right"><a href="organization.htm">Organization</a><img src="IMAGES/spacer.gif" width="15" height="7" /></div></td> <td width="10" bgcolor="#DEDEDD">&nbsp;</td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td bgcolor="#DEDEDD"><img src="IMAGES/spacer.gif" width="15" height="7" /></td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="menuNorm" onmouseover="this.className='menuHigh'" onmouseout="this.className='menuNorm'"><div align="right"><a href="campus.htm">Our Campus</a><img src="IMAGES/spacer.gif" width="15" height="7" /></div></td> <td width="10" bgcolor="#DEDEDD">&nbsp;</td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td bgcolor="#DEDEDD"><img src="IMAGES/spacer.gif" width="15" height="7" /></td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="menuNorm" onmouseover="this.className='menuHigh'" onmouseout="this.className='menuNorm'"><div align="right"><a href="children.htm">Children</a><img src="IMAGES/spacer.gif" width="15" height="7" /></div></td> <td width="10" bgcolor="#DEDEDD">&nbsp;</td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td bgcolor="#DEDEDD"><img src="IMAGES/spacer.gif" width="15" height="7" /></td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="menuNorm" onmouseover="this.className='menuHigh'" onmouseout="this.className='menuNorm'"><div align="right"><a href="youth.htm">Teens/Youth</a><img src="IMAGES/spacer.gif" width="15" height="7" /></div></td> <td width="10" bgcolor="#DEDEDD">&nbsp;</td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td bgcolor="#DEDEDD"><img src="IMAGES/spacer.gif" width="15" height="7" /></td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="menuNorm" onmouseover="this.className='menuHigh'" onmouseout="this.className='menuNorm'"><div align="right"><a href="men.htm">Men</a><img src="IMAGES/spacer.gif" width="15" height="7" /></div></td> <td width="10" bgcolor="#DEDEDD">&nbsp;</td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td bgcolor="#DEDEDD"><img src="IMAGES/spacer.gif" width="15" height="7" /></td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="menuNorm" onmouseover="this.className='menuHigh'" onmouseout="this.className='menuNorm'"><div align="right"><a href="women.htm">Women</a><img src="IMAGES/spacer.gif" width="15" height="7" /></div></td> <td width="10" bgcolor="#DEDEDD">&nbsp;</td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td bgcolor="#DEDEDD"><img src="IMAGES/spacer.gif" width="15" height="7" /></td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="menuNorm" onmouseover="this.className='menuHigh'" onmouseout="this.className='menuNorm'"><div align="right"><a href="donations.htm">Donations</a><img src="IMAGES/spacer.gif" width="15" height="7" /></div></td> <td width="10" bgcolor="#DEDEDD">&nbsp;</td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td bgcolor="#DEDEDD"><img src="IMAGES/spacer.gif" width="15" height="7" /></td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="menuNorm" onmouseover="this.className='menuHigh'" onmouseout="this.className='menuNorm'"><div align="right"><a href="music.htm">Music</a> <img src="IMAGES/spacer.gif" width="15" height="7" /></div></td> <td width="10" bgcolor="#DEDEDD">&nbsp;</td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td bgcolor="#DEDEDD"><img src="IMAGES/spacer.gif" width="15" height="7" /></td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="menuNorm" onmouseover="this.className='menuHigh'" onmouseout="this.className='menuNorm'"><div align="right"><a href="/calender/calender.asp">Calendar</a><img src="IMAGES/spacer.gif" width="15" height="7" /></div></td> <td width="10" bgcolor="#DEDEDD">&nbsp;</td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td bgcolor="#DEDEDD"><img src="IMAGES/spacer.gif" width="15" height="7" /></td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="menuNorm" onmouseover="this.className='menuHigh'" onmouseout="this.className='menuNorm'"><div align="right"><a href="newsletter.htm">Newsletters</a><img src="IMAGES/spacer.gif" width="15" height="7" /></div></td> <td width="10" bgcolor="#DEDEDD">&nbsp;</td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td bgcolor="#DEDEDD"><img src="IMAGES/spacer.gif" width="15" height="7" /></td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="menuNorm" onmouseover="this.className='menuHigh'" onmouseout="this.className='menuNorm'"><div align="right"><a href="annual.htm">Annual Events</a><img src="IMAGES/spacer.gif" width="15" height="7" /></div></td> <td width="10" bgcolor="#DEDEDD">&nbsp;</td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td bgcolor="#DEDEDD"><img src="IMAGES/spacer.gif" width="15" height="7" /></td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="menuNorm" onmouseover="this.className='menuHigh'" onmouseout="this.className='menuNorm'"><div align="right"><a href="staff.htm">Meet Our Staff</a><img src="IMAGES/spacer.gif" width="15" height="7" /></div></td> <td width="10" bgcolor="#DEDEDD">&nbsp;</td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td bgcolor="#DEDEDD"><img src="IMAGES/spacer.gif" width="15" height="7" /></td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="menuNorm" onmouseover="this.className='menuHigh'" onmouseout="this.className='menuNorm'"><div align="right"><a href="contact.htm">Contact Us</a> <img src="IMAGES/spacer.gif" width="15" height="7" /></div></td> <td width="10" bgcolor="#DEDEDD">&nbsp;</td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <img src="IMAGES/windows/149window.jpg"> </tr> </table> </td> </tr> </table>