ÿþ<html> <head> <meta HTTP-EQUIV="Content-Type" Content="text-html; charset=Windows-1252"> <meta name="MSSmartTagsPreventParsing" content="TRUE"> <META NAME="description" CONTENT="Join our Barbershop Chorus for Women, member of Sweet Adelines International"> <META NAME="keywords" CONTENT="women's chorus, hire singers, Sequim WA, barbershop singing, women, woman's chorus, singing group, North Olympic Peninsula"> <meta name="robots" content="all"> <meta name="revisit after" content="3 days"> <title>Grand Olympics Chorus, North Olympic Peninsula Barbershop Women's Choral Singers</title> <!-- Original script by Philip Winston (pwinston@yahoo.com) --> <div id="dot0" style="position: absolute; visibility: hidden; height: 2; width: 2;"> <img src="trailtrans.gif" height=20 width=20> </div> <div id="dot1" style="position: absolute; height:2 ; width: 2;"> <img src="http://www.grandolympicschorus.org/images/trail6c.gif" height=30 width=20> </div> <div id="dot2" style="position: absolute; height: 10; width: 10;"> <img src="http://www.grandolympicschorus.org/images/trail5c.gif" height=10 width=30> </div> <div id="dot3" style="position: absolute; height: 18; width: 18;"> <img src="http://www.grandolympicschorus.org/images/trail4c.gif" height=30 width=10> </div> <div id="dot4" style="position: absolute; height: 26; width: 26;"> <img src="http://www.grandolympicschorus.org/images/trail3c.gif" height=35 width=14> </div> <div id="dot5" style="position: absolute; height: 34; width: 34;"> <img src="http://www.grandolympicschorus.org/images/trail2c.gif" height=30 width=12> </div> <div id="dot6" style="position: absolute; height: 42; width: 42;"> <img src="http://www.grandolympicschorus.org/images/trail1c.gif" height=43 width=15> </div> <div id="dot7" style="position: absolute; height: 66; width: 66;"> <img src="http://www.grandolympicschorus.org/images/trailtrans.gif" height=38 width=42> </div> <script language="JavaScript" type="text/javascript"> <!-- var nDots = 8;var Xpos = 0; var Ypos = 0; var DELTAT = .01; var SEGLEN = 10; var SPRINGK = 10; var MASS = 1; var XGRAVITY = 0; var YGRAVITY = 50; var RESISTANCE = 10; var STOPVEL = 0.1; var STOPACC = 0.1; var DOTSIZE = 11; var BOUNCE = 0.75; var isNetscape = navigator.appName=="Netscape"; var followmouse = true; var dots = new Array(); init(); function init() { var i = 0; for (i = 0; i < nDots; i++) { dots[i] = new dot(i); } if (!isNetscape) { } for (i = 0; i < nDots; i++) { dots[i].obj.left = dots[i].X; dots[i].obj.top = dots[i].Y; } if (isNetscape) { startanimate(); } else { setTimeout("startanimate()", 100); } } function dot(i) { this.X = Xpos; this.Y = Ypos; this.dx = 0; this.dy = 0; if (isNetscape) { this.obj = eval("document.dot" + i); } else { this.obj = eval("dot" + i + ".style"); } } function startanimate() { setInterval("animate()", 20); } function setInitPositions(dots) { var startloc = document.all.tags("LI"); var i = 0; for (i = 0; i < startloc.length && i < (nDots - 1); i++) { dots[i+1].X = startloc[i].offsetLeft startloc[i].offsetParent.offsetLeft - DOTSIZE; dots[i+1].Y = startloc[i].offsetTop + startloc[i].offsetParent.offsetTop + 2*DOTSIZE; } dots[0].X = dots[1].X; dots[0].Y = dots[1].Y - SEGLEN; } function MoveHandler(e) { Xpos = e.pageX; Ypos = e.pageY; return true; } function MoveHandlerIE() { Xpos = window.event.x + document.body.scrollLeft; Ypos = window.event.y + document.body.scrollTop; } if (isNetscape) { document.captureEvents(Event.MOUSEMOVE); document.onMouseMove = MoveHandler; } else { document.onmousemove = MoveHandlerIE; } function vec(X, Y) { this.X = X; this.Y = Y; } function springForce(i, j, spring) { var dx = (dots[i].X - dots[j].X); var dy = (dots[i].Y - dots[j].Y); var len = Math.sqrt(dx*dx + dy*dy); if (len > SEGLEN) { var springF = SPRINGK * (len - SEGLEN); spring.X += (dx / len) * springF; spring.Y += (dy / len) * springF; } } function animate() { var start = 0; if (followmouse) { dots[0].X = Xpos; dots[0].Y = Ypos; start = 1; } for (i = start ; i < nDots; i++ ) { var spring = new vec(0, 0); if (i > 0) { springForce(i-1, i, spring); } if (i < (nDots - 1)) { springForce(i+1, i, spring); } var resist = new vec(-dots[i].dx * RESISTANCE, -dots[i].dy * RESISTANCE); var accel = new vec((spring.X + resist.X)/MASS + XGRAVITY, (spring.Y + resist.Y)/ MASS + YGRAVITY); dots[i].dx += (DELTAT * accel.X); dots[i].dy += (DELTAT * accel.Y); if (Math.abs(dots[i].dx) < STOPVEL && Math.abs(dots[i].dy) < STOPVEL && Math.abs(accel.X) < STOPACC && Math.abs(accel.Y) < STOPACC) { dots[i].dx = 0; dots[i].dy = 0; } dots[i].X += dots[i].dx; dots[i].Y += dots[i].dy; var height, width; if (isNetscape) { height = window.innerHeight + window.pageYOffset; width = window.innerWidth + window.pageXOffset; } else { height = document.body.clientHeight + document.body.scrollTop; width = document.body.clientWidth + document.body.scrollLeft; } if (dots[i].Y >= height - DOTSIZE - 1) { if (dots[i].dy > 0) { dots[i].dy = BOUNCE * -dots[i].dy; } dots[i].Y = height - DOTSIZE - 1; } if (dots[i].X >= width - DOTSIZE) { if (dots[i].dx > 0) { dots[i].dx = BOUNCE * -dots[i].dx; } dots[i].X = width - DOTSIZE - 1; } if (dots[i].X < 0) { if (dots[i].dx < 0) { dots[i].dx = BOUNCE * -dots[i].dx; } dots[i].X = 0; } dots[i].obj.left = dots[i].X; dots[i].obj.top = dots[i].Y; } } //--> </script> <SCRIPT LANGUAGE="JavaScript"> <!-- // Start of Mouseover Script browserName = navigator.appName; browserVer = parseInt(navigator.appVersion); var version = "n2"; if ((navigator.appCodeName == 'Mozilla') && (navigator.appVersion.substring(0,1) > 2)) {version = "n3+";} if ((navigator.appCodeName == 'MSIE') && (navigator.appVersion.substring(0,1) > 3)) {version = "n3+";} if (version == "n3+") { //----------------------------------------- // Start Image Variable home = new Image(75,20); home.src = "http://www.grandolympicschorus.org/images/home.gif"; homea = new Image(75,20); homea.src = "http://www.grandolympicschorus.org/images/homea.gif"; mission = new Image(75,20); mission.src = "http://www.grandolympicschorus.org/images/mission.gif"; missiona = new Image(75,20); missiona.src = "http://www.grandolympicschorus.org/images/missiona.gif"; get = new Image(75,20); get.src = "http://www.grandolympicschorus.org/images/get.gif"; geta = new Image(75,20); geta.src = "http://www.grandolympicschorus.org/images/geta.gif"; musicnotes = new Image(75,20); musicnotes.src = "http://www.grandolympicschorus.org/images/musicnotes.gif"; musicnotesa = new Image(75,20); musicnotesa.src = "http://www.grandolympicschorus.org/images/musicnotesb.gif"; joinus = new Image(75,20); joinus.src = "http://www.grandolympicschorus.org/images/joinus.gif"; joinusa = new Image(75,20); joinusa.src = "http://www.grandolympicschorus.org/images/joinusa.gif"; barbershop = new Image(75,20); barbershop.src = "http://www.grandolympicschorus.org/images/barbershop.gif"; barbershopa = new Image(75,20); barbershopa.src = "http://www.grandolympicschorus.org/images/barbershopa.gif"; performances = new Image(75,20); performances.src = "http://www.grandolympicschorus.org/images/performances.gif"; performancesa = new Image(75,20); performancesa.src = "http://www.grandolympicschorus.org/images/performancesa.gif"; quartets = new Image(75,20); quartets.src = "http://www.grandolympicschorus.org/images/quartets.gif"; quartetsa = new Image(75,20); quartetsa.src = "http://www.grandolympicschorus.org/images/quartetsa.gif"; links = new Image(75,20); links.src = "http://www.grandolympicschorus.org/images/links.gif"; linksa = new Image(75,20); linksa.src = "http://www.grandolympicschorus.org/images/linksa.gif"; contact = new Image(75,20); contact.src = "http://www.grandolympicschorus.org/images/contact.gif"; contacta = new Image(75,20); contacta.src = "http://www.grandolympicschorus.org/images/contacta.gif"; members = new Image(75,20); members.src = "http://www.grandolympicschorus.org/images/members.gif"; membersa = new Image(75,20); membersa.src = "http://www.grandolympicschorus.org/images/membersa.gif"; // End Image Variable Block //----------------------------------------- } function imagechange(OffImg,OnImg) { if (version == "n3+") { document.images[OffImg].src = eval(OnImg + ".src"); }} // End of Script--> </SCRIPT> </head> <body bgcolor="#008B8B" text="#FFFFFF" link="#EE82EE" vlink="#CCCCFF" alink="#FFCCFF" leftmargin="15"> <table border="0" cellpadding="11" style="border-collapse: collapse" width="899" id="table1" height="304"> <tr> <td valign="bottom" height="350" width="877"> <img border="0" src="images/GOCBanner2011.jpg" width="871" height="535"></td> </tr> </table> <table align="left" style="border-collapse: collapse" bordercolor="#111111" cellpadding="0" cellspacing="0" width="810"> <tr><td width="152"> <!-- Start of the HTML code for the Home Button/Link --> <A HREF="http://www.grandolympicschorus.org" onMouseover="imagechange('home','homea')" onMouseout="imagechange('home','home')"> <IMG SRC="http://www.grandolympicschorus.org/images/home.gif" BORDER="0" NAME="home" WIDTH="141" HEIGHT="38" ALT="GOC Women's chorus, barbershop style!"></A><BR> <!-- End of the HTML code for the Home Button/Link --> <!-- Start of the HTML code for the Mission Button/Link --> <A HREF="http://www.grandolympicschorus.org/MissionStatement.html" onMouseover="imagechange('mission','missiona')" onMouseout="imagechange('mission','mission')"> <IMG SRC="http://www.grandolympicschorus.org/images/mission.gif" BORDER="0" NAME="mission" WIDTH="141" HEIGHT="38" ALT="Women who love to sing, keep it going!"></A><BR> <!-- End of the HTML code for the Mission Button/Link --> <!-- Start of the HTML code for the Get to know us Button/Link --> <A HREF="http://www.grandolympicschorus.org/leaders.html" onMouseover="imagechange('get','geta')" onMouseout="imagechange('get','get')"> <IMG SRC="http://www.grandolympicschorus.org/images/get.gif" BORDER="0" NAME="get" WIDTH="141" HEIGHT="38" ALT="Our wonderful people!"></A><BR> <!-- End of the HTML code for theGet to know us Button/Link --> <!-- Start of the HTML code for the Barbershop/Link --> <A HREF="http://www.grandolympicschorus.org/barbershopchords.html" onMouseover="imagechange('barbershop','barbershopa')" onMouseout="imagechange('barbershop','barbershop')"> <IMG SRC="http://www.grandolympicschorus.org/images/barbershop.gif" BORDER="0" NAME="barbershop" WIDTH="141" HEIGHT="38" ALT="How we sing barbershop style!"></A><BR> <!-- End of the HTML code for the Barbershop/Link --> <!-- Start of the HTML code for the MusicNotes/Link --> <A HREF="http://www.grandolympicschorus.org/musicnotes.html" onMouseover="imagechange('musicnotes','musicnotesa')" onMouseout="imagechange('musicnotes','musicnotes')"> <IMG SRC="http://www.grandolympicschorus.org/images/musicnotes.gif" BORDER="0" NAME="musicnotes" WIDTH="141" HEIGHT="38" ALT="Notes from Judie, our fabulous director!"></A><BR> <!-- End of the HTML code for the MusicNotes/Link --> <!-- Start of the HTML code for the Join US/Link --> <A HREF="http://www.grandolympicschorus.org/joinus.html" onMouseover="imagechange('joinus','joinusa')" onMouseout="imagechange('joinus','joinus')"> <IMG SRC="http://www.grandolympicschorus.org/images/joinus.gif" BORDER="0" NAME="joinus" WIDTH="141" HEIGHT="38" ALT="Information for the Time and Place!"></A><BR> <!-- End of the HTML code for the Join Us/Link --> <!-- Start of the HTML code for the Performances/Link --> <A HREF="http://www.grandolympicschorus.org/performances.html" onMouseover="imagechange('performances','performancesa')" onMouseout="imagechange('performances','performances')"> <IMG SRC="http://www.grandolympicschorus.org/images/performances.gif" BORDER="0" NAME="performances" WIDTH="141" HEIGHT="38" ALT="Booking information"></A><BR> <!-- End of the HTML code for the Performances/Link --> <!-- Start of the HTML code for the quartets/Link --> <A HREF="http://www.grandolympicschorus.org/quartets.html" onMouseover="imagechange('quartets','quartetsa')" onMouseout="imagechange('quartets','quartets')"> <IMG SRC="http://www.grandolympicschorus.org/images/quartets.gif" BORDER="0" NAME="quartets" WIDTH="141" HEIGHT="38" ALT="Booking information"></A><BR> <!-- End of the HTML code for the quartets/Link --> <!-- Start of the HTML code for the Contact Us/Link --> <A HREF="http://www.grandolympicschorus.org/contactus.html" onMouseover="imagechange('contact','contacta')" onMouseout="imagechange('contact','contact')"> <IMG SRC="http://www.grandolympicschorus.org/images/contact.gif" BORDER="0" NAME="contact" WIDTH="141" HEIGHT="38" ALT="Contact information"></A><BR> <!-- End of the HTML code for the Contact us/Link --> <!-- Start of the HTML code for the Members/Link --> <A HREF="http://www.grandolympicschorus.org/members" onMouseover="imagechange('members','membersa')" onMouseout="imagechange('members','members')"> <IMG SRC="http://www.grandolympicschorus.org/images/members.gif" BORDER="0" NAME="members" WIDTH="141" HEIGHT="38" ALT="Members Only, Sign in here"></A><BR> <!-- End of the HTML code for the Members/Link --> <br><hr><br> <font color="#ffffff" size="2"><i> <A HREF="http://www.grandolympicschorus.org/downloads/LookingforSingers.pdf"> <img height="100" src="images/Diva.jpg" ALT="Singing Divas invited! Read Our News Release!" width="120" border="0"></a></i></font></p></td> <td valign="top" width="610"> <div align="left"><font color="#FFFFFF"> <blockquote> <p style="margin-top: 12; margin-bottom: 13"><font color="#FFFF00" size="4">Director Search, May 31st deadline to apply </font></font color><A HREF="http://www.grandolympicschorus.org/leaders.html">more...</a><br><br> <font color="#FFFFFF"> <object width="360" height="202"><param name="movie" value="http://www.youtube.com/v/PmWyw0aNkg4&hl=en_US&feature=player_embedded&version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/PmWyw0aNkg4&hl=en_US&feature=player_embedded&version=3" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="480" height="270"></embed></object> <br><font size="4">The Grand Olympics Chorus is a group of lively friendly women from diverse backgrounds and interests who come together in Sequim on the North Olympic Peninsula of Washington State, to share our love and enjoyment of singing together in a cappella harmony, barbershop style. </font> <p style="margin-top: 12; margin-bottom: 13"><font size="4">We are a chapter of Sweet Adelines International, an organization devoted to the performance and perfection of the barbershop style of singing. <br><br> The organization is committed to world class education for choruses, quartets, and the individual members throughout the world, including such places as Australia, Canada, England, Germany, New Zealand, and Sweden. <br><br> For booking information, please <a href="http://www.grandolympicschorus.org/performances.html">view</a> our specialties! </font><br> <p> <br><hr><br> <img src="http://www.grandolympicschorus.org/images/GOPLogo.GIF"width="75" height="50"> &nbsp; <font size="4">&nbsp;</font>Grand Olympics Chorus<br> Sweet Adelines International, Region&nbsp; 13, Sequim, WA 98382&nbsp;</p> </p> </blockquote> </body> </html>