[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.5

How do I get Div tags to align vertically and horizontally?

Asked by elliottbenzle in Cascading Style Sheets (CSS), Extensible HTML (XHTML), Hypertext Markup Language (HTML)

On this page (http://www.glowfishtw.com/flagfootball/index.asp) I'm using Div tags to layout the boxes containing the scores. They are in the container listed "Recent game scores" on the right side of the page. I want each box to look like this:

                         DATE
NAME 1        SCORE 1
NAME 2        SCORE 2

In the first box it looks fine, but in the other boxes it looks like this:

                           DATE
NAME 1    NAME 2    SCORE 1
                                 SCORE 2

I'm assuming this is just because I don't understand how to use DIv boxes.

Here is the code for the CSS styles and the DIV layout. Could someone take a look and help me figure out what I'm doing wrong? DO I need to place something in between the top two and bottom two div tags to make sure they drop down to the next line? Thanks for any help.

.scorebg {
      background-image: url(images/scoreboxblank.jpg);
      background-repeat: no-repeat;
      height: 38px;
      width: 60px;
      margin-top: 8px;
      float: left;
      margin-right: 5px;
}
.scoredate {
      text-align: right;
      height: 12px;
      padding-right: 3px;
      font-size: 10px;
      color: #FFFFFF;
      font-weight: bold;
      font-family: Geneva, Arial, Helvetica, sans-serif;
      padding-top: 1px;
      float: none;
}
.scorename1 {
      height: 12px;
      font-size: 8px;
      font-family: "Times New Roman", Times, serif;
      color: #0000FF;
      float: left;
      padding-left: 3px;
      font-weight: bold;
}

.scorename2 {
      height: 11px;
      font-size: 8px;
      font-family: "Times New Roman", Times, serif;
      color: #0000FF;
      float: left;
      padding-left: 3px;
      font-weight: bold;
}

.scorescore1 {
      height: 12px;
      float: right;
      font-size: 10px;
      color: #000000;
      font-family: "Courier New", Courier, monospace;
      padding-right: 3px;
}

.scorescore2 {
      height: 11px;
      float: right;
      font-size: 10px;
      color: #000000;
      font-family: "Courier New", Courier, monospace;
      padding-right: 3px;
}

    <% If Not rsscorebox.EOF Then %>
            <div class="scorebg">
                    <div class="scoredate"><%=(rsscorebox.Fields.Item("date").Value)%></div>
                    <div class="scorename1"><%=(rsscorebox.Fields.Item("team1").Value)%></div>
                    <div class="scorescore1"><%=(rsscorebox.Fields.Item("score1").Value)%></div>
                    <div class="scorename2"><%=(rsscorebox.Fields.Item("team2").Value)%></div>
                    <div class="scorescore2"><%=(rsscorebox.Fields.Item("score2").Value)%></div>
            </div>
        <% rsscorebox.MoveNext() %>      
     <% End if %>
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:
261:
262:
263:
264:
265:
266:
267:
268:
269:
270:
271:
272:
273:
274:
275:
276:
277:
278:
279:
280:
281:
282:
283:
284:
285:
286:
287:
288:
289:
290:
291:
292:
293:
294:
295:
296:
297:
298:
299:
300:
301:
302:
303:
304:
305:
306:
307:
308:
309:
310:
311:
312:
313:
314:
315:
316:
317:
318:
319:
320:
321:
322:
323:
324:
325:
326:
327:
328:
329:
330:
331:
332:
333:
334:
335:
336:
337:
338:
339:
340:
341:
342:
343:
344:
345:
346:
347:
348:
349:
350:
351:
352:
353:
354:
355:
356:
357:
358:
359:
360:
361:
362:
363:
364:
365:
366:
367:
368:
369:
370:
371:
372:
373:
374:
375:
376:
377:
378:
379:
380:
381:
382:
383:
384:
385:
386:
387:
388:
389:
390:
391:
392:
393:
394:
395:
396:
397:
398:
399:
400:
401:
402:
403:
404:
405:
406:
407:
408:
409:
410:
411:
412:
413:
414:
415:
416:
417:
418:
419:
420:
421:
422:
423:
424:
425:
426:
427:
428:
429:
430:
431:
432:
433:
434:
435:
436:
437:
438:
439:
440:
441:
442:
443:
444:
445:
446:
447:
448:
449:
450:
451:
452:
453:
454:
455:
456:
457:
458:
459:
460:
461:
462:
463:
464:
465:
466:
467:
468:
469:
470:
471:
472:
473:
474:
475:
476:
477:
478:
479:
480:
481:
482:
483:
484:
485:
486:
487:
488:
489:
490:
491:
492:
493:
494:
495:
496:
497:
498:
499:
500:
501:
502:
503:
504:
505:
506:
507:
508:
509:
510:
511:
512:
513:
514:
515:
516:
517:
518:
519:
520:
521:
522:
523:
524:
525:
526:
527:
528:
529:
530:
531:
532:
533:
534:
535:
536:
537:
538:
539:
540:
541:
542:
543:
544:
545:
546:
547:
548:
549:
550:
551:
552:
553:
554:
555:
556:
557:
558:
559:
560:
561:
562:
563:
564:
565:
566:
567:
568:
569:
570:
571:
572:
573:
574:
575:
576:
577:
578:
579:
580:
581:
582:
583:
584:
585:
586:
587:
588:
589:
590:
591:
592:
593:
594:
595:
596:
597:
598:
599:
600:
601:
602:
603:
604:
605:
606:
607:
608:
609:
610:
611:
612:
613:
614:
615:
616:
617:
618:
619:
620:
621:
622:
623:
624:
625:
626:
627:
628:
629:
630:
631:
632:
633:
634:
635:
636:
637:
638:
639:
640:
641:
642:
643:
644:
645:
646:
647:
648:
649:
650:
651:
652:
653:
654:
655:
656:
657:
658:
659:
660:
661:
662:
663:
664:
665:
666:
667:
668:
669:
670:
671:
672:
673:
674:
675:
676:
677:
678:
679:
680:
681:
682:
683:
684:
685:
686:
687:
688:
689:
690:
691:
692:
693:
694:
695:
696:
697:
698:
699:
700:
701:
702:
703:
704:
705:
706:
707:
708:
709:
710:
711:
712:
713:
714:
715:
716:
717:
718:
719:
720:
721:
722:
723:
724:
725:
726:
727:
728:
729:
730:
731:
732:
733:
734:
735:
736:
737:
738:
739:
740:
741:
742:
743:
744:
745:
746:
747:
748:
749:
750:
751:
752:
753:
754:
755:
756:
757:
758:
759:
760:
761:
762:
763:
764:
765:
766:
767:
768:
769:
770:
771:
772:
773:
774:
775:
776:
777:
778:
779:
780:
781:
782:
783:
784:
785:
786:
787:
788:
789:
790:
791:
792:
793:
794:
795:
796:
797:
798:
799:
800:
801:
802:
803:
804:
805:
806:
807:
808:
809:
810:
811:
812:
813:
814:
815:
816:
817:
818:
819:
820:
821:
822:
823:
824:
825:
826:
827:
828:
829:
830:
831:
832:
833:
834:
835:
836:
837:
838:
839:
840:
841:
842:
843:
844:
845:
846:
847:
848:
849:
850:
851:
852:
853:
854:
855:
856:
857:
858:
859:
860:
861:
862:
863:
864:
865:
866:
867:
868:
869:
870:
871:
872:
873:
874:
875:
876:
877:
878:
879:
880:
881:
882:
883:
884:
885:
886:
887:
888:
889:
890:
891:
892:
893:
894:
895:
896:
897:
898:
899:
900:
901:
902:
903:
904:
905:
906:
907:
908:
909:
910:
911:
912:
913:
914:
915:
916:
917:
918:
919:
920:
921:
922:
923:
924:
925:
926:
927:
928:
929:
930:
931:
932:
933:
934:
935:
936:
937:
938:
939:
940:
941:
942:
943:
944:
945:
946:
947:
948:
949:
950:
951:
952:
953:
954:
955:
956:
957:
958:
959:
960:
961:
962:
963:
964:
965:
966:
967:
968:
969:
970:
971:
972:
973:
974:
975:
976:
977:
978:
979:
980:
981:
982:
983:
984:
985:
986:
987:
988:
989:
990:
991:
992:
993:
994:
995:
996:
997:
998:
999:
1000:
1001:
1002:
1003:
1004:
1005:
1006:
1007:
1008:
1009:
1010:
1011:
1012:
1013:
1014:
1015:
1016:
1017:
1018:
1019:
1020:
1021:
1022:
1023:
1024:
1025:
1026:
1027:
1028:
1029:
1030:
1031:
1032:
1033:
1034:
1035:
1036:
1037:
1038:
1039:
1040:
1041:
1042:
1043:
1044:
1045:
1046:
1047:
1048:
1049:
1050:
1051:
1052:
1053:
1054:
1055:
1056:
1057:
1058:
1059:
1060:
1061:
1062:
1063:
1064:
1065:
1066:
1067:
1068:
1069:
1070:
1071:
1072:
1073:
1074:
1075:
1076:
1077:
1078:
1079:
1080:
1081:
1082:
1083:
1084:
1085:
1086:
1087:
1088:
1089:
1090:
1091:
1092:
1093:
1094:
1095:
1096:
1097:
1098:
1099:
1100:
1101:
1102:
1103:
1104:
1105:
1106:
1107:
1108:
1109:
1110:
1111:
1112:
1113:
1114:
1115:
1116:
1117:
1118:
1119:
1120:
1121:
1122:
1123:
1124:
1125:
1126:
1127:
1128:
1129:
1130:
1131:
1132:
1133:
1134:
1135:
1136:
1137:
1138:
1139:
1140:
1141:
1142:
1143:
1144:
1145:
1146:
1147:
1148:
1149:
1150:
1151:
1152:
1153:
1154:
1155:
1156:
1157:
1158:
1159:
1160:
1161:
1162:
1163:
1164:
1165:
1166:
1167:
1168:
1169:
1170:
1171:
1172:
1173:
1174:
1175:
1176:
1177:
1178:
1179:
1180:
1181:
1182:
1183:
1184:
1185:
1186:
1187:
1188:
1189:
1190:
1191:
1192:
1193:
1194:
1195:
1196:
1197:
1198:
1199:
1200:
1201:
1202:
1203:
1204:
1205:
1206:
1207:
1208:
1209:
1210:
1211:
1212:
1213:
1214:
1215:
1216:
1217:
1218:
1219:
1220:
1221:
1222:
1223:
1224:
1225:
1226:
1227:
1228:
1229:
1230:
1231:
1232:
1233:
1234:
1235:
1236:
1237:
1238:
1239:
1240:
1241:
1242:
1243:
1244:
1245:
1246:
1247:
1248:
1249:
1250:
1251:
1252:
1253:
1254:
1255:
1256:
1257:
1258:
1259:
1260:
1261:
1262:
1263:
1264:
1265:
1266:
1267:
1268:
1269:
1270:
1271:
1272:
1273:
1274:
1275:
1276:
1277:
1278:
1279:
1280:
1281:
1282:
1283:
1284:
1285:
1286:
1287:
1288:
1289:
1290:
1291:
1292:
1293:
1294:
1295:
1296:
1297:
1298:
1299:
1300:
1301:
1302:
1303:
1304:
1305:
1306:
1307:
1308:
1309:
1310:
1311:
1312:
1313:
1314:
1315:
1316:
1317:
1318:
1319:
1320:
1321:
1322:
1323:
1324:
1325:
1326:
1327:
1328:
1329:
1330:
1331:
1332:
1333:
1334:
1335:
1336:
1337:
1338:
1339:
1340:
1341:
1342:
1343:
1344:
1345:
1346:
1347:
1348:
1349:
1350:
1351:
1352:
1353:
1354:
1355:
1356:
1357:
1358:
1359:
1360:
1361:
1362:
1363:
1364:
1365:
1366:
1367:
1368:
1369:
1370:
1371:
1372:
1373:
1374:
1375:
1376:
1377:
1378:
1379:
1380:
1381:
1382:
1383:
1384:
1385:
1386:
1387:
1388:
1389:
1390:
1391:
1392:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!--#include file="Connections/flagfootball.asp" -->
<%
Dim rsnewsscroller
Dim rsnewsscroller_cmd
Dim rsnewsscroller_numRows
 
Set rsnewsscroller_cmd = Server.CreateObject ("ADODB.Command")
rsnewsscroller_cmd.ActiveConnection = MM_flagfootball_STRING
rsnewsscroller_cmd.CommandText = "SELECT * FROM newsscroll" 
rsnewsscroller_cmd.Prepared = true
 
Set rsnewsscroller = rsnewsscroller_cmd.Execute
rsnewsscroller_numRows = 0
%>
<%
Dim rsnfl__MMColParam
rsnfl__MMColParam = "1"
If (Request("MM_EmptyValue") <> "") Then 
  rsnfl__MMColParam = Request("MM_EmptyValue")
End If
%>
<%
Dim rsnfl
Dim rsnfl_cmd
Dim rsnfl_numRows
 
Set rsnfl_cmd = Server.CreateObject ("ADODB.Command")
rsnfl_cmd.ActiveConnection = MM_flagfootball_STRING
rsnfl_cmd.CommandText = "SELECT * FROM nfl WHERE ID = ?" 
rsnfl_cmd.Prepared = true
rsnfl_cmd.Parameters.Append rsnfl_cmd.CreateParameter("param1", 5, 1, -1, rsnfl__MMColParam) ' adDouble
 
Set rsnfl = rsnfl_cmd.Execute
rsnfl_numRows = 0
%>
<%
Dim rspicbox__MMColParam
rspicbox__MMColParam = "1"
If (Request("MM_EmptyValue") <> "") Then 
  rspicbox__MMColParam = Request("MM_EmptyValue")
End If
%>
<%
Dim rspicbox
Dim rspicbox_cmd
Dim rspicbox_numRows
 
Set rspicbox_cmd = Server.CreateObject ("ADODB.Command")
rspicbox_cmd.ActiveConnection = MM_flagfootball_STRING
rspicbox_cmd.CommandText = "SELECT * FROM picbox WHERE ID = ?" 
rspicbox_cmd.Prepared = true
rspicbox_cmd.Parameters.Append rspicbox_cmd.CreateParameter("param1", 5, 1, -1, rspicbox__MMColParam) ' adDouble
 
Set rspicbox = rspicbox_cmd.Execute
rspicbox_numRows = 0
%>
<%
Dim rsmaincontent__MMColParam
rsmaincontent__MMColParam = "1"
If (Request("MM_EmptyValue") <> "") Then 
  rsmaincontent__MMColParam = Request("MM_EmptyValue")
End If
%>
<%
Dim rsmaincontent
Dim rsmaincontent_cmd
Dim rsmaincontent_numRows
 
Set rsmaincontent_cmd = Server.CreateObject ("ADODB.Command")
rsmaincontent_cmd.ActiveConnection = MM_flagfootball_STRING
rsmaincontent_cmd.CommandText = "SELECT * FROM maincontent WHERE ID = ?" 
rsmaincontent_cmd.Prepared = true
rsmaincontent_cmd.Parameters.Append rsmaincontent_cmd.CreateParameter("param1", 5, 1, -1, rsmaincontent__MMColParam) ' adDouble
 
Set rsmaincontent = rsmaincontent_cmd.Execute
rsmaincontent_numRows = 0
%>
<%
Dim rsnews
Dim rsnews_cmd
Dim rsnews_numRows
 
Set rsnews_cmd = Server.CreateObject ("ADODB.Command")
rsnews_cmd.ActiveConnection = MM_flagfootball_STRING
rsnews_cmd.CommandText = "SELECT * FROM news ORDER BY realdate ASC" 
rsnews_cmd.Prepared = true
 
Set rsnews = rsnews_cmd.Execute
rsnews_numRows = 0
%>
<%
Dim rsslideshow
Dim rsslideshow_cmd
Dim rsslideshow_numRows
 
Set rsslideshow_cmd = Server.CreateObject ("ADODB.Command")
rsslideshow_cmd.ActiveConnection = MM_flagfootball_STRING
rsslideshow_cmd.CommandText = "SELECT * FROM slideshow" 
rsslideshow_cmd.Prepared = true
 
Set rsslideshow = rsslideshow_cmd.Execute
rsslideshow_numRows = 0
%>
<%
Dim rsfooter__MMColParam
rsfooter__MMColParam = "1"
If (Request("MM_EmptyValue") <> "") Then 
  rsfooter__MMColParam = Request("MM_EmptyValue")
End If
%>
<%
Dim rsfooter
Dim rsfooter_cmd
Dim rsfooter_numRows
 
Set rsfooter_cmd = Server.CreateObject ("ADODB.Command")
rsfooter_cmd.ActiveConnection = MM_flagfootball_STRING
rsfooter_cmd.CommandText = "SELECT * FROM footer WHERE ID = ?" 
rsfooter_cmd.Prepared = true
rsfooter_cmd.Parameters.Append rsfooter_cmd.CreateParameter("param1", 5, 1, -1, rsfooter__MMColParam) ' adDouble
 
Set rsfooter = rsfooter_cmd.Execute
rsfooter_numRows = 0
%>
<%
Dim rsscorebox
Dim rsscorebox_cmd
Dim rsscorebox_numRows
 
Set rsscorebox_cmd = Server.CreateObject ("ADODB.Command")
rsscorebox_cmd.ActiveConnection = MM_flagfootball_STRING
rsscorebox_cmd.CommandText = "SELECT * FROM scorehilliard" 
rsscorebox_cmd.Prepared = true
 
Set rsscorebox = rsscorebox_cmd.Execute
rsscorebox_numRows = 0
%>
<%
Dim Repeat1__numRows
Dim Repeat1__index
 
Repeat1__numRows = -1
Repeat1__index = 0
rsnews_numRows = rsnews_numRows + Repeat1__numRows
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Flag Football Fanatics</title>
 
<!-- Begin Grab This - You'll need this external CSS file and the IE Statement below -->
<style type="text/css">@import url("menuh.css");</style>
<!--[if lt IE 7]>
<style type="text/css" media="screen">
#menuh{float:none;}
body{behavior:url(csshover.htc); font-size:100%;}
#menuh ul li{float:left; width: 100%; margin:0px; padding:0px;}
#menuh a{height:1%;}
</style>
<![endif]-->
 
<!-- End Grab This -->
 
<script type="text/javascript">
<!--
function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}
 
function MM_CheckFlashVersion(reqVerStr,msg){
  with(navigator){
    var isIE  = (appVersion.indexOf("MSIE") != -1 && userAgent.indexOf("Opera") == -1);
    var isWin = (appVersion.toLowerCase().indexOf("win") != -1);
    if (!isIE || !isWin){  
      var flashVer = -1;
      if (plugins && plugins.length > 0){
        var desc = plugins["Shockwave Flash"] ? plugins["Shockwave Flash"].description : "";
        desc = plugins["Shockwave Flash 2.0"] ? plugins["Shockwave Flash 2.0"].description : desc;
        if (desc == "") flashVer = -1;
        else{
          var descArr = desc.split(" ");
          var tempArrMajor = descArr[2].split(".");
          var verMajor = tempArrMajor[0];
          var tempArrMinor = (descArr[3] != "") ? descArr[3].split("r") : descArr[4].split("r");
          var verMinor = (tempArrMinor[1] > 0) ? tempArrMinor[1] : 0;
          flashVer =  parseFloat(verMajor + "." + verMinor);
        }
      }
      // WebTV has Flash Player 4 or lower -- too low for video
      else if (userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 4.0;
 
      var verArr = reqVerStr.split(",");
      var reqVer = parseFloat(verArr[0] + "." + verArr[2]);
  
      if (flashVer < reqVer){
        if (confirm(msg))
          window.location = "http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash";
      }
    }
  } 
}
//-->
</script>
 
<link href="qscroller.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="mootools.js"></script>
<script type="text/javascript" src="qscroller.js"></script>
<style type="text/css">
<!--
 
.style1 {font-size: 24px}
.style2 {font-size: 20px}
.style30 {
	font-size: 16px
}
 
A { text-decoration:none;}
A:link	{color:blue;}
A:hover	{color: red;}
A:visited {color:blue;}
 .tab {font-size:12px;font-family:Arial,Helvetica;color:#CCCCCC;}
 .tabb {font-size:14px; font-family:Arial,Helvetica;}
 
P  { margin:0px; padding:0px; display:inline;  }
 
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	height: 200px;
	background-color: #4A4A4A;
}
 
.oneColFixCtrHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: center;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 2px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
}
.oneColFixCtrHdr #header {
	padding: 0 0px 0 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	text-align: center;
	background-color: #000C60;
}
.tophalf {
	background-image: url(images/tophalfbbg.jpg);
	background-repeat: repeat-x;
	height: 105px;
}
 
.bottomhalf {
	background-image: url(images/bottomhalfbbg.jpg);
	background-repeat: no-repeat;
	height: 105px;
	padding-top: 10px;
	padding-right: 12px;
	padding-bottom: 5px;
}
.menuhalf {
	height: 22px;
	width: 780px;
	background-image: url(images/menuhalf.jpg);
	background-repeat: repeat-x;
	text-align: center;
}
 
a:link {
	color: #CCCCCC;
}
.spacer {
	width: 5px;
}
.oneColFixCtrHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColFixCtrHdr #mainContent {
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 10;
	padding-left: 0px;
	background-color: #FFFDE1;
	width: 780px;
}
.oneColFixCtrHdr #footer {
	padding-top: 100;
	padding-right: 50px;
	padding-bottom: 0;
	padding-left: 50px;
	background-color: #4A4A4A;
	margin-top: 100px;
	font-size: 10px;
	color: #CCCCCC;
}
.footer {
	background-color: #4A4A4A;
	padding-top: 20px;
	padding-right: 50px;
	padding-left: 50px;
	font-size: 10px;
	color: #CCCCCC;
	padding-bottom: 15px;
}
.oneColFixCtrHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
 
.style3 {
	font-size: 10px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	padding-top: 10px;
}
 
.scorebg {
	background-image: url(images/scoreboxblank.jpg);
	background-repeat: no-repeat;
	height: 38px;
	width: 60px;
	margin-top: 8px;
	float: left;
	margin-right: 5px;
}
.scoredate {
	text-align: right;
	height: 12px;
	padding-right: 3px;
	font-size: 10px;
	color: #FFFFFF;
	font-weight: bold;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	padding-top: 1px;
	float: none;
}
.scorename1 {
	height: 12px;
	font-size: 8px;
	font-family: "Times New Roman", Times, serif;
	color: #0000FF;
	float: left;
	padding-left: 3px;
	font-weight: bold;
}
 
.scorename2 {
	height: 11px;
	font-size: 8px;
	font-family: "Times New Roman", Times, serif;
	color: #0000FF;
	float: left;
	padding-left: 3px;
	font-weight: bold;
}
 
.scorescore1 {
	height: 12px;
	float: right;
	font-size: 10px;
	color: #000000;
	font-family: "Courier New", Courier, monospace;
	padding-right: 3px;
}
 
.scorescore2 {
	height: 11px;
	float: right;
	font-size: 10px;
	color: #000000;
	font-family: "Courier New", Courier, monospace;
	padding-right: 3px;
}
 
    .speciallink {
	font-family: verdana, arial, helvetica, sans-serif;
	color: #FFFFFF;
	font-size: 8px;
	font-style: normal;
	font-weight: normal;
    }
 
    .speciallink A:link {
	color: #FFFFFF;
	text-decoration: none;
    }
 
    .speciallink A:visited {
	color: #CCCCCC;
	text-decoration: none;
    }
	
	    .speciallinkg {
	font-family: verdana, arial, helvetica, sans-serif;
	color: #FFFFFF;
	font-size: 10px;
	font-style: normal;
	font-weight: normal;
    }
.mailinglist {
	font-size: 12px;
	color: #333333;
	height: 70px;
	margin-top: 20px;
	margin-right: 20px;
	margin-left: 25px;
	padding-top: 5px;
	padding-bottom: 0px;
	background-image: url(images/emaillist.jpg);
	background-repeat: repeat-x;
	margin-bottom: 15px;
}
.enteremail {
	font-size: 10px;
	color: #333333;
	text-align: left;
	margin-left: 20px;
	margin-bottom: 0px;
}
.mailinglistcontent {
	padding-top: 10px;
	text-align: center;
}
.mailinglistheader {
	font-size: 14px;
	font-weight: bold;
	color: #333333;
}
 
    .speciallinkg A:link {
	color: #FFFFFF;
	text-decoration: none;
    }
 
    .speciallinkg A:visited {
	color: #CCCCCC;
 
 
	text-decoration: none;
    }
	
	.speciallinkg A:hover {
	color: #666666;
    }
	
.picbox {
	padding-right: 0px;
	padding-left: 0px;
	margin-right: 20px;
	margin-left: 25px;
	background-color: #E7E9FF;
	text-align: center;
}
.picboxheader {
	background-color: #CCCCCC;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #000000;
	font-size: 0px;
	text-align: center;
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
	padding: 2px;
}
.nflbg {
	height: 120px;
	width: 240px;
	background-image: url(images/nflbg.jpg);
	text-align: left;
	background-repeat: no-repeat;
	background-position: center;
	padding-top: 30px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 120px;
	margin-left: 20px;
	margin-right: 20px;
	vertical-align: top;
}
.threetwenty {
	width: 320px;
}
.picboxfooter {
	background-color: #E7E9FF;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 25px;
	font-size: 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: lighter;
	color: #666666;
	padding-top: 10px;
	padding-right: 35px;
	padding-bottom: 10px;
	padding-left: 35px;
}
 
    .speciallink A:hover {
	color: #666666;
    }
.maintext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	background-color: #FFFEF4;
	text-align: left;
	width: 250px;
	margin-top: 5px;
	margin-right: 20px;
	margin-bottom: 5px;
	margin-left: 30px;
}
.newsheader {
	width: 400px;
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
	margin-top: 10px;
	margin-right: 8px;
	margin-left: 2px;
	text-align: right;
}
.newscontent {
	width: 380px;
	margin-right: 10px;
	margin-left: 10px;
	padding-right: 10px;
	padding-left: 10px;
	font-size: 12px;
	color: #333333;
	font-family: Georgia, "Times New Roman", Times, serif;
	margin-top: 0px;
	padding-top: 0px;
	text-align: left;
	line-height: 24px;
}
.videobox {
	width: 410px;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 10px;
	background-image: url(images/videobg.jpg);
	background-position: center bottom;
	background-color: #FFFFFF;
	background-repeat: no-repeat;
	margin-bottom: 15px;
}
 
.slidetextbg {
	background-color: #E7E9FF;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 25px;
	font-size: 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: lighter;
	color: #666666;
	padding-top: 10px;
	padding-right: 30px;
	padding-bottom: 10px;
	padding-left: 30px;
	width: 240px;
}
 
-->
</style>
<SCRIPT LANGUAGE="JavaScript">
/***********************************
*   http://javascripts.vbarsan.com/
*   This notice may not be removed 
***********************************/
 
//-- Begin Scroller's Parameters and message -->
//scroller width: change to your own;
var wwidth=770;
 
//scroller height: change to your own;
var wheight=20;
 
//background color: change to your own; 
var wbcolor="#ccffcc";
 
//scroller's speed: change to your own;
var sspeed=2;
var restart=sspeed;
var rspeed=sspeed;
 
//text: change to your own
 
wwholemessage='<nobr class=tab><b><%=(rsnewsscroller.Fields.Item("newsscroll").Value)%></b></nobr>';
 
//-- end Parameters and message-->
 
//-- begin: Scroller's Algorithm -->
var sizeupw=0;var operbr=navigator.userAgent.toLowerCase().indexOf('opera');if(operbr==-1&&navigator.product&&navigator.product=="Gecko"){var agt = navigator.userAgent.toLowerCase();var rvStart = agt.indexOf('rv:');var rvEnd = agt.indexOf(')', rvStart);var check15 = agt.substring(rvStart+3, rvEnd);if(parseFloat(check15)>=1.8) operbr=0;}if (navigator.appVersion.indexOf("Mac")!=-1)operbr=0;
function goup(){if(sspeed!=rspeed*8){sspeed=sspeed*2;restart=sspeed;}}
function godown(){if(sspeed>rspeed){sspeed=sspeed/2;restart=sspeed;}}
function startw(){if(document.getElementById)ns6marqueew(document.getElementById('wslider'));else if(document.all) iemarqueew(wslider);else if(document.layers)ns4marqueew(document.wslider1.document.wslider2);}function iemarqueew(whichdiv){iedivw=eval(whichdiv);iedivw.style.pixelLeft=wwidth+"px";iedivw.innerHTML='<nobr>'+wwholemessage+'</nobr>';sizeupw=iedivw.offsetWidth;ieslidew();}function ieslidew(){if(iedivw.style.pixelLeft>=sizeupw*(-1)){iedivw.style.pixelLeft-=sspeed+"px";setTimeout("ieslidew()",100);}else{iedivw.style.pixelLeft=wwidth+"px";ieslidew();}}function ns4marqueew(whichlayer){ns4layerw=eval(whichlayer);ns4layerw.left=wwidth;ns4layerw.document.write('<nobr>'+wwholemessage+'</nobr>');ns4layerw.document.close();sizeupw=ns4layerw.document.width;ns4slidew();}function ns4slidew(){if(ns4layerw.left>=sizeupw*(-1)){ns4layerw.left-=sspeed;setTimeout("ns4slidew()",100);}else{ns4layerw.left=wwidth;ns4slidew();}}function ns6marqueew(whichdiv){ns6divw=eval(whichdiv);ns6divw.style.left=wwidth+"px";ns6divw.innerHTML='<nobr>'+wwholemessage+'</nobr>';sizeupw=ns6divw.offsetWidth;if(operbr!=-1){document.getElementById('operaslider').innerHTML='<nobr>'+wwholemessage+'</nobr>';sizeupw=document.getElementById('operaslider').offsetWidth;}ns6slidew();}function ns6slidew(){if(parseInt(ns6divw.style.left)>=sizeupw*(-1)){ns6divw.style.left=parseInt(ns6divw.style.left)-sspeed+"px";setTimeout("ns6slidew()",100);}else{ns6divw.style.left=wwidth+"px";ns6slidew();}}
//-- end Algorithm -->
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
</script>
<!-- End of Script between <head> & </head> tags-->
 
<script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
<script src="Scripts/AC_ActiveX.js" type="text/javascript"></script>
</head>
 
<body class="oneColFixCtrHdr"; onload="startw(); document.getElementById('wslider').style.top = '10%';MM_preloadImages('images/homeon.jpg','images/reghilliardon.jpg','images/reggrovecityon.jpg','images/regdublinon.jpg','images/leagueson.jpg','images/leaghilliardon.jpg','images/leaggrovecityon.jpg','images/leagdublinon.jpg','images/eventson.jpg','images/parentson.jpg','images/parparentson.jpg','images/parcodeon.jpg','images/parwaiveron.jpg','images/parimagereleaseon.jpg','images/coacheson.jpg','images/coacoacheson.jpg','images/coaapplicationon.jpg','images/coapledgeon.jpg','images/coawaiveron.jpg','images/coamedicalon.jpg','images/coadrillstipson.jpg','images/ruleson.jpg','images/rulmicminion.jpg','images/rulminion.jpg','images/ruljunioron.jpg','images/faqson.jpg','images/aboutuson.jpg','images/contactuson.jpg','images/reghilliardspringon.jpg','images/reghilliardfallon.jpg','images/reghilliardcampson.jpg','images/reggrovecityspringon.jpg','images/reggrovecityfallon.jpg','images/reggrovecitycampson.jpg','images/regdublinspringon.jpg','images/regdublinfallon.jpg','images/regdublincampson.jpg','images/leaghilliardspringon.jpg','images/leaghilliardfallon.jpg','images/leaghilliardcampson.jpg','images/leaggrovecityspringon.jpg','images/leaggrovecityfallon.jpg','images/leaggrovecitycampson.jpg','images/leagdublinspringon.jpg','images/leagdublinfallon.jpg','images/leagdublincampson.jpg','images/paraggrievanceformon.jpg','images/parvideoon.jpg','images/parpictureson.jpg','images/parmessageboardon.jpg','images/parvideohilliardon.jpg','images/parvideogrovecityon.jpg','images/parvideodublinon.jpg','images/parpictureshilliardon.jpg','images/parpicturesgrovecityon.jpg','images/parpicturesdublinon.jpg','images/coabecomeacoachon.jpg','images/rulsenioron.jpg','images/conaggrievanceformon.jpg','images/conjoinemailon.jpg','images/concontacton.jpg','images/larrowon.jpg','images/rarrowon.jpg','images/conbecomearefon.jpg');MM_CheckFlashVersion('9,0,28,0','Content on this page requires a newer version of Adobe Flash Player. Do you want to download it now?')">
 
<div id="container">
 
  <div id="header" align="center">
<!-- You may remove first cell below (<td> ... </td>) to get rid of Speed-change -->
<script language="JavaScript">document.write('<table align="center" border="0"><tr><td width='+wwidth+'px>');if(document.getElementById || document.all){document.write('<span style="width:'+wwidth+'px;"><div style="position:relative;overflow:hidden;width:'+wwidth+'px;height:'+wheight+'px;clip:rect(0 '+wwidth+'px '+wheight+'px 0);background-image: url(images/topbar.jpg);" onMouseover="sspeed=0;" onMouseout="sspeed=restart">');if(operbr!=-1)document.write('<div id="operaslider" style="position:absolute;visibility:hidden;"></div>');document.write('<div id="wslider" style="position:absolute;height:'+wheight+'px;"></div></div></span>')}</script>
<ilayer width=&{wwidth}; height=&{wheight}; name="wslider1" bgcolor=&{wbcolor};><layer name="wslider2" width=&{wwidth}; height=&{wheight}; onMouseover="sspeed=0;" onMouseout="sspeed=restart"></layer></ilayer></td></tr></table>
<!-- end  of code between BODY TAGS -->
 
  </div>
  <div class="tophalf">
  
    <table width="539" height="95" border="0" align="left" >
      <tr>
        <td width="4">&nbsp;</td>
        <td width="520" bgcolor="#000000"><div align="center">
          <script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','500','height','75','align','middle','src','PicStrip','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','bgcolor','#000000','movie','PicStrip' ); //end AC code
        </script>
          <noscript>
            <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="500" height="75" align="middle">
              <param name="movie" value="PicStrip.swf" />
              <param name="quality" value="high" />
              <param name="BGCOLOR" value="#000000" />
              <embed src="PicStrip.swf" width="500" height="75" align="middle" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" bgcolor="#000000"></embed>
            </object>
            </noscript>
        </div></td>
      </tr>
    </table>
    <table width="233" height="93" align="center"0">
  <tr>
    <td height="14" valign="top"><div align="left" ><span class="style3">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Search Flag Football</span></div></td>
  </tr>
  <tr>
    <form method="get" action="http://www.google.com/custom">
       <td height="26" valign="top"><div align="left">
                  <input type="text" name="q" size="20" maxlength="255" value="" />
					<input type="submit" name="btnG" value="Search" />
					  <input type="hidden" name="sitesearch" value="http://www.flagfball.com/" />
       </div></td>
    </form>
  </tr>
  <tr>
    <td height="12" valign="top"><div align="center"><span class="speciallink">- <a href="javascript:void(0)">register</a> - <a href="javascript:void(0)">schedule</a> - <a href="javascript:void(0)">old site</a> - <a href="javascript:void(0)">adult league</a> - </span></div></td>
  </tr>
</table>
</div>
 
<div class="bottomhalf">
  <table width="316" height="86" border="0" align="right" class="scbg">
				  <!--DWLayoutTable-->
<tr>
				    <td width="22" rowspan="2" align="center" valign="middle"><a id="go-prev" href="javascript:void(0)"><span href="#" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('larrow','','images/larrowon.jpg',1)"><img src="images/larrow.jpg" name="larrow" width="13" height="12" border="0" id="larrow" /></span></a></td>
                    
      <td width="263" height="66" align="center" valign="bottom"><div id="qscroller2" class="qscroller"></div></td>
      
      <td width="17" rowspan="2" align="center" valign="middle">  <a id="go-next" href="javascript:void(0)"><span href="#" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('rarrow','','images/rarrowon.jpg',1)"><img src="images/rarrow.jpg" name="rarrow" width="13" height="12" border="0" id="rarrow" /></span></a></td>
      </tr>
				  <tr>
				    <td height="14"><div align="center"><span class="speciallinkg">- <a href="javascript:void(0)">Hilliard </a> - <a href="javascript:void(0)">Grove City</a> - <a href="javascript:void(0)">Dublin</a> -</span></div></td>
      </tr>
    </table>
<div class="hide">
	<div class="qslide2">
    <% If Not rsscorebox.EOF Then %>
		<div class="scorebg">
  			<div class="scoredate"><%=(rsscorebox.Fields.Item("date").Value)%></div>
  			<div class="scorename1"><%=(rsscorebox.Fields.Item("team1").Value)%></div>
  			<div class="scorescore1"><%=(rsscorebox.Fields.Item("score1").Value)%></div>
  			<div class="scorename2"><%=(rsscorebox.Fields.Item("team2").Value)%></div>
  			<div class="scorescore2"><%=(rsscorebox.Fields.Item("score2").Value)%></div>
		</div>
        <% rsscorebox.MoveNext() %>	
     <% End if %>
        
    <% If Not rsscorebox.EOF Then %>
		<div class="scorebg">
  			<div class="scoredate"><%=(rsscorebox.Fields.Item("date").Value)%></div>
  			<div class="scorename1"><%=(rsscorebox.Fields.Item("team1").Value)%></div>
  			<div class="scorescore1"><%=(rsscorebox.Fields.Item("score1").Value)%></div>
  			<div class="scorename2"><%=(rsscorebox.Fields.Item("team2").Value)%></div>
  			<div class="scorescore2"><%=(rsscorebox.Fields.Item("score2").Value)%></div>
		</div>
        <% rsscorebox.MoveNext() %>	
     <% End if %>
        
    <% If Not rsscorebox.EOF Then %>
		<div class="scorebg">
  			<div class="scoredate"><%=(rsscorebox.Fields.Item("date").Value)%></div>
  			<div class="scorename1"><%=(rsscorebox.Fields.Item("team1").Value)%></div>
  			<div class="scorescore1"><%=(rsscorebox.Fields.Item("score1").Value)%></div>
  			<div class="scorename2"><%=(rsscorebox.Fields.Item("team2").Value)%></div>
  			<div class="scorescore2"><%=(rsscorebox.Fields.Item("score2").Value)%></div>
		</div>
        <% rsscorebox.MoveNext() %>	
     <% End if %>
        
    <% If Not rsscorebox.EOF Then %>
		<div class="scorebg">
  			<div class="scoredate"><%=(rsscorebox.Fields.Item("date").Value)%></div>
  			<div class="scorename1"><%=(rsscorebox.Fields.Item("team1").Value)%></div>
  			<div class="scorescore1"><%=(rsscorebox.Fields.Item("score1").Value)%></div>
  			<div class="scorename2"><%=(rsscorebox.Fields.Item("team2").Value)%></div>
  			<div class="scorescore2"><%=(rsscorebox.Fields.Item("score2").Value)%></div>
		</div>
        <% rsscorebox.MoveNext() %>	
     <% End if %>
        
	</div>
      
  	<div class="qslide2">
  	  <img src="images/scorebox.jpg" alt="" />
  	  <img src="images/scorebox.jpg" alt="" />
  	  <img src="images/scorebox.jpg" alt="" />
  	  <img src="images/scorebox.jpg" alt="" />   	  
     </div>
      
  	<div class="qslide2">
  	  <img src="images/scorebox.jpg" alt="" />
  	  <img src="images/scorebox.jpg" alt="" />
  	  <img src="images/scorebox.jpg" alt="" />
  	  <img src="images/scorebox.jpg" alt="" />   	  
     </div>
</div>                
</div>
  
<div class="menuhalf">
<div id="menuh">	
		  
	  <ul style="width:55px;">
			   <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image45','','images/homeon.jpg',1)"><img src="images/home.jpg" name="Image45" width="55" height="19" border="0"></a>
                  
 
   		</li>
	  </ul>   
      
<ul style="width:6px;">
              		<img src="images/menuspacer.jpg">		       				
   	  </ul>   
       
       
    			<ul style="width:86px;">
		    	  <li>
          			<a>
           		  <script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','86','height','22','align','absbottom','src','reg4','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','reg4' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="86" height="22" align="absbottom">
<param name="movie" value="reg4.swf">
                    <param name="quality" value="high">
                    <embed src="reg4.swf" width="86" height="22" align="absbottom" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash"></embed>
         		    </object></noscript></a>
              
              <ul>
                    <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image46','','images/reghilliardon.jpg',1)"><img src="images/reghilliard.jpg" name="Image46" width="86" height="19" border="0"></a>
                    <ul>
                    <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image74','','images/reghilliardspringon.jpg',1)"><img src="images/reghilliardspring.jpg" name="Image74" width="97" height="19" border="0"></a></li>
                                        <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image75','','images/reghilliardfallon.jpg',1)"><img src="images/reghilliardfall.jpg" name="Image75" width="97" height="19" border="0"></a></li>
                                        <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image76','','images/reghilliardcampson.jpg',1)"><img src="images/reghilliardcamps.jpg" name="Image76" width="97" height="19" border="0"></a></li>
                    </ul>
                    </li>
 
                      <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image47','','images/reggrovecityon.jpg',1)"><img src="images/reggrovecity.jpg" name="Image47" width="86" height="19" border="0"></a>              <ul>		
                      <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image77','','images/reggrovecityspringon.jpg',1)"><img src="images/reggrovecityspring.jpg" name="Image77" width="97" height="19" border="0"></a></li>
                      <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image78','','images/reggrovecityfallon.jpg',1)"><img src="images/reggrovecityfall.jpg" name="Image78" width="97" height="19" border="0"></a></li>
                      <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image79','','images/reggrovecitycampson.jpg',1)"><img src="images/reggrovecitycamps.jpg" name="Image79" width="97" height="19" border="0"></a></li>
              </ul>        
                      </li>
 
                      <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image48','','images/regdublinon.jpg',1)"><img src="images/regdublin.jpg" name="Image48" width="86" height="19" border="0"></a>
                      
                      <ul>
                       <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image80','','images/regdublinspringon.jpg',1)"><img src="images/regdublinspring.jpg" name="Image80" width="97" height="19" border="0"></a></li>
                        <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image81','','images/regdublinfallon.jpg',1)"><img src="images/regdublinfall.jpg" name="Image81" width="97" height="19" border="0"></a></li>
                         <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image82','','images/regdublincampson.jpg',1)"><img src="images/regdublincamps.jpg" name="Image82" width="97" height="19" border="0"></a></li>
                      </ul>
                     </li>
                </ul>  
             </li>
   	  </ul>   
   
                
<ul style="width:6px;">
<img src="images/menuspacer.jpg">		       				
</ul>   
 
    			<ul style="width:103px;">
		    	  <li>
           		  <a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image54','','images/leagueson.jpg',1)"><img src="images/leagues.jpg" name="Image54" width="103" height="19" border="0"></a>
                  
                 <ul>
                    <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image55','','images/leaghilliardon.jpg',1)"><img src="images/leaghilliard.jpg" name="Image55" width="103" height="19" border="0"></a>
                   <ul>
                   <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image72','','images/leaghilliardspringon.jpg',1)"><img src="images/leaghilliardspring.jpg" name="Image72" width="97" height="19" border="0"></a></li>
                    <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image83','','images/leaghilliardfallon.jpg',1)"><img src="images/leaghilliardfall.jpg" name="Image83" width="97" height="19" border="0"></a></li>
                     <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image84','','images/leaghilliardcampson.jpg',1)"><img src="images/leaghilliardcamps.jpg" name="Image84" width="97" height="19" border="0"></a></li>
                   </ul>
                   </li>
                   
                   
                      <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image56','','images/leaggrovecityon.jpg',1)"><img src="images/leaggrovecity.jpg" name="Image56" width="103" height="19" border="0"></a>
                      <ul>
                      <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image85','','images/leaggrovecityspringon.jpg',1)"><img src="images/leaggrovecityspring.jpg" name="Image85" width="97" height="19" border="0"></a></li>
                      <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image86','','images/leaggrovecityfallon.jpg',1)"><img src="images/leaggrovecityfall.jpg" name="Image86" width="97" height="19" border="0"></a></li>
                      <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image87','','images/leaggrovecitycampson.jpg',1)"><img src="images/leaggrovecitycamps.jpg" name="Image87" width="97" height="19" border="0"></a></li>
                      </ul>
                      </li>
                      <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image57','','images/leagdublinon.jpg',1)"><img src="images/leagdublin.jpg" name="Image57" width="103" height="19" border="0"></a> 
                      <ul>
                      <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image88','','images/leagdublinspringon.jpg',1)"><img src="images/leagdublinspring.jpg" name="Image88" width="97" height="19" border="0"></a></li>
                      <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image89','','images/leagdublinfallon.jpg',1)"><img src="images/leagdublinfall.jpg" name="Image89" width="97" height="19" border="0"></a></li>
                      <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image90','','images/leagdublincampson.jpg',1)"><img src="images/leagdublincamps.jpg" name="Image90" width="97" height="19" border="0"></a></li>
                      </ul>
                      </li>
                </ul>  
                </li>
		     	</ul>   
           
<ul style="width:6px;">
<img src="images/menuspacer.jpg">		       				
</ul>   
                
                <ul style="width:117px;">
			    	<li>
                      <a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image52','','images/eventson.jpg',1)"><img src="images/events.jpg" name="Image52" width="117" height="19" border="0"></a>           		     </li>
		     	</ul>   
                
<ul style="width:6px;">
<img src="images/menuspacer.jpg">		       				
</ul>   
                
                
                   <ul style="width:64px;">
			    	<li>
           		      <a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image53','','images/parentson.jpg',1)"><img src="images/parents.jpg" name="Image53" width="64" height="19" border="0"></a> 
 
                  <ul>
                    <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image50','','images/parparentson.jpg',1)"><img src="images/parparents.jpg" name="Image50" width="131" height="19" border="0"></a></li>
                    <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image92','','images/parvideoon.jpg',1)"><img src="images/parvideo.jpg" name="Image92" width="131" height="19" border="0"></a>
                    <ul>
                    <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image95','','images/parvideohilliardon.jpg',1)"><img src="images/parvideohilliard.jpg" name="Image95" width="103" height="19" border="0"></a></li>
                    <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image96','','images/parvideogrovecityon.jpg',1)"><img src="images/parvideogrovecity.jpg" name="Image96" width="103" height="19" border="0"></a></li>
                    <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image97','','images/parvideodublinon.jpg',1)"><img name="Image97" border="0" src="images/parvideodublin.jpg"></a></li>
                    </ul>
                    </li>
                    
                    <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image93','','images/parpictureson.jpg',1)"><img name="Image93" border="0" src="images/parpictures.jpg"></a>
                    <ul>
                    <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image98','','images/parpictureshilliardon.jpg',1)"><img src="images/parpictureshilliard.jpg" name="Image98" width="103" height="19" border="0"></a></li>
                    <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image99','','images/parpicturesgrovecityon.jpg',1)"><img src="images/parpicturesgrovecity.jpg" name="Image99" width="103" height="19" border="0"></a></li>
                    <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image100','','images/parpicturesdublinon.jpg',1)"><img src="images/parpicturesdublin.jpg" name="Image100" width="103" height="19" border="0"></a></li>
                    </ul>
                    </li>
                    
                    
                    <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image94','','images/parmessageboardon.jpg',1)"><img src="images/parmessageboard.jpg" name="Image94" width="131" height="19" border="0"></a></li>
                      <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image51','','images/parcodeon.jpg',1)"><img src="images/parcode.jpg" name="Image51" width="131" height="19" border="0"></a></li>
                      <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image58','','images/parwaiveron.jpg',1)"><img src="images/parwaiver.jpg" name="Image58" width="131" height="19" border="0"></a> </li>
					  <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image59','','images/parimagereleaseon.jpg',1)"><img src="images/parimagerelease.jpg" name="Image59" width="131" height="19" border="0"></a> </li> 						<li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image91','','images/paraggrievanceformon.jpg',1)"><img src="images/paraggrievanceform.jpg" name="Image91" width="131" height="19" border="0"></a></li>
                </ul> 
                     </li>
		     	</ul>   
                
<ul style="width:6px;">
<img src="images/menuspacer.jpg">		       				
</ul>   
                
 
                   <ul style="width:67px;">
			    	<li>
           		     <a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image60','','images/coacheson.jpg',1)"><img src="images/coaches.jpg" name="Image60" width="67" height="19" border="0"></a>
                  <ul>
                    <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image61','','images/coacoacheson.jpg',1)"><img src="images/coacoaches.jpg" name="Image61" width="151" height="19" border="0"></a></li>
                    <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image101','','images/coabecomeacoachon.jpg',1)"><img src="images/coabecomeacoach.jpg" name="Image101" width="151" height="19" border="0"></a></li>
                      <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image62','','images/coaapplicationon.jpg',1)"><img src="images/coaapplication.jpg" name="Image62" width="151" height="19" border="0"></a></li>
                      <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image63','','images/coapledgeon.jpg',1)"><img src="images/coapledge.jpg" name="Image63" width="151" height="19" border="0"></a></li>
					  <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image64','','images/coawaiveron.jpg',1)"><img src="images/coawaiver.jpg" name="Image64" width="151" height="19" border="0"></a> </li> 
                      <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image65','','images/coamedicalon.jpg',1)"><img src="images/coamedical.jpg" name="Image65" width="151" height="19" border="0"></a> </li> 
                      <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image66','','images/coadrillstipson.jpg',1)"><img src="images/coadrillstips.jpg" name="Image66" width="151" height="19" border="0"></a></li> 
                </ul> 
                </li>
		     	</ul>   
                
           
<ul style="width:6px;">
<img src="images/menuspacer.jpg">		       			
	
</ul>  
                
                    <ul style="width:50px;">
			    	<li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image67','','images/ruleson.jpg',1)"><img src="images/rules.jpg" name="Image67" width="50" height="19" border="0"></a>
                    <ul>
                    <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image68','','images/rulmicminion.jpg',1)"><img src="images/rulmicmini.jpg" name="Image68" width="145" height="19" border="0"></a></li>
                      <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image69','','images/rulminion.jpg',1)"><img src="images/rulmini.jpg" name="Image69" width="145" height="19" border="0"></a></li>
                      <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image70','','images/ruljunioron.jpg',1)"><img src="images/ruljunior.jpg" name="Image70" width="145" height="19" border="0"></a> </li>
                      <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image102','','images/rulsenioron.jpg',1)"><img src="images/rulsenior.jpg" name="Image102" width="145" height="19" border="0"></a></li>
                </ul>
                    </li>
		     	</ul>   
           
<ul style="width:6px;">
<img src="images/menuspacer.jpg">		       				
</ul>   
                
 
                <ul style="width:48px;">
			    <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image71','','images/faqson.jpg',1)"><img src="images/faqs.jpg" name="Image71" width="48" height="19" border="0"></a></li>
		     	</ul>   
                
                
<ul style="width:6px;">
<img src="images/menuspacer.jpg">		       				
</ul> 
                
                   <ul style="width:81px;">
			    	<li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image73','','images/contactuson.jpg',1)"><img src="images/contactus.jpg" name="Image73" width="81" height="19" border="0"></a>
                    <ul>
                    <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image103','','images/conaggrievanceformon.jpg',1)"><img src="images/conaggrievanceform.jpg" name="Image103" width="131" height="19" border="0"></a></li>
                    <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image104','','images/conjoinemailon.jpg',1)"><img src="images/conjoinemail.jpg" name="Image104" width="131" height="19" border="0"></a></li>
                    <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image105','','images/concontacton.jpg',1)"><img src="images/concontact.jpg" name="Image105" width="131" height="19" border="0"></a></li>
                        <li><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image151','','images/conbecomearefon.jpg',1)"><img src="images/conbecomearef.jpg" name="Image151" width="131" height="19" border="0"></a></li>
                    </ul>
					</li>
		     	</ul>   
                
<ul>
<img src="images/menuspacer.jpg">		       				
</ul> 
        
    </div>
 
</div>  
  
  <div id="mainContent">
    <table width="780" height="647"  border="0" bgcolor="#FFFDE1">
      <tr>
        <td width="350" height="643"  valign="top">
 
        
        <div align="center" class="picboxheader">
        <!-- ImageReady Slices (hp.psd) -->
<table width="320" border="0">
      <tr>
        <td width="325"><script language="Javascript" type="text/javascript">
  function changeHomepageStoriesPackageTab (tabname) {
  
  document.getElementById('dropmsg0').style.display = 'none';
  
  document.getElementById('dropmsg1').style.display = 'none';
  
  document.getElementById('dropmsg2').style.display = 'none';
  
  document.getElementById('dropmsg3').style.display = 'none';
  
  document.getElementById('dropmsg4').style.display = 'none';
  
  document.getElementById(tabname).style.display = 'block';
  }
      </script>
              <script language="Javascript" type="text/javascript">
    var autoDiv = 1;
	var activeDiv = 0;
	var activationTimer = setInterval('changeDiv()', 10000);
	function changeDiv() {
		if (autoDiv == 1) {
			activeDiv = (activeDiv + 1) % 5 ;
			changeHomepageStoriesPackageTab ('dropmsg'+ activeDiv)
		}
	}
        </script>
              <div id="release_wrapper">
                <div id="dropmsg0" style="z-index: 5; display:block; ">
                  <table width="320" height="320" cellspacing="0" cellpadding="0" border="0">
                    <tr>
                      <td width="321" height="19"><table width="320" height="19" cellspacing="0" cellpadding="0" border="0" style="background-color: #FFFFFF;">
                          <tr>
                            <td width="167" align="left" valign="top"><img src="slideshow/slideheading.jpg" width="167" height="18" /></td>
                            <td width="93" align="right" valign="middle" style= "padding-right: 5px;"><nobr>
                              <div align="right"><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg0');autoDiv=0;return false;"><img src="slideshow/no1.jpg" width="16" height="18" border="0" alt="Slide 1" /></a><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg1');autoDiv=0;return false;"><img src="slideshow/no2.jpg" width="16" height="18" border="0" alt="Slide 2" /></a><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg2');autoDiv=0;return false;"><img src="slideshow/no3.jpg" width="16" height="18" border="0" alt="Slide 3" /></a><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg3');autoDiv=0;return false;"><img src="slideshow/no4.jpg" width="16" height="18" border="0" alt="Slide 4" /></a><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg4');autoDiv=0;return false;"><img src="slideshow/no5.jpg" width="16" height="18" border="0" alt="Slide 5" /></a> </div>
                            </nobr></td>
                            <td align="center" valign="middle" width="21"><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg4');autoDiv=0;return false;"><img src="images/previousbutton.jpg" width="18" height="18" border="0" alt="Previous" /></a></td>
                            <td align="center" valign="middle" width="18"><a href="#" onclick="autoDiv=0;return false;"><img src="images/pausebutton.jpg" width="18" height="18" border="0" alt="Pause" /></a></td>
                            <td align="center" valign="middle" width="21"><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg1');autoDiv=0;return false;"><img src="images/nextbutton.jpg" width="18" height="18" border="0" alt="Next" /></a></td>
                          </tr>
                      </table></td>
                    </tr>
                    <tr> 
                      <td height="320" width="320" align="center" valign="bottom" style="background: url(slideshow/slide1.jpg) no-repeat;"><table width="320" height="28" cellspacing="0" cellpadding="0" border="0">
                        <tr>
                          <td height="1" style="background: #FFFFFF;"><img src="spacergrey.gif" width="1" height="1" alt="" /></td>
                        </tr>
                        <tr>
                          <td height="26" width="320" align="left" valign="middle" class="storyoverlay style1 style2" style="padding-left: 15px; padding-right: 10px;"><center>
                           <font color="#00FFFF"><b><%=(rsslideshow.Fields.Item("varheader").Value)%></b></font>
                          </center>                          </td>
                        </tr>
                        <tr>
                          <td height="1" style="background: #FFFFFF;"><img src="spacergrey.gif" width="1" height="1" alt="" /></td>
                        </tr>
                      </table></td>
                    </tr>
                    <tr>
                      <td height="2" style="background: #999999;"><img src="spacer.gif" width="1" height="2" alt="" /></td>
                    </tr>
                    <tr>
                      <td height="110" style="background: #ffffff; padding-left: 14px; padding-right: 14px; padding-top: 14px; padding-bottom: 8px;" align="left" valign="top" class="storytext"><span class="style30"><%=(rsslideshow.Fields.Item("varbodytext").Value)%> </span></td>
                    </tr>
                    <tr>
                      <td height="5" style="background: #ffffff;" align="center" valign="top" class="storylinks"></td>
                    </tr>
                    <tr>
                      <td height="1" style="background: #999999;"><img src="spacer.gif" width="1" height="1" alt="" /></td>
                    </tr>
                  </table>
                </div>
                
<% rsslideshow.MoveNext() %>   
             
                <div id="dropmsg1" style="z-index: 4; display:none; ">
                  <table width="320" height="320" cellspacing="0" cellpadding="0" border="0">
                    <tr>
                      <td height="19"><table width="320" height="19" cellspacing="0" cellpadding="0" border="0" style="background-color:#FFFFFF;">
                          <tr>
                            <td align="left" valign="top"><img src="slideshow/slideheading.jpg" width="167" height="18" /></td>
                            <td width="93" align="right" valign="middle" style="padding-right: 5px;"><nobr>
                            
                            <div align="right">
                             <a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg0');autoDiv=0;return false;"><img src="slideshow/no1.jpg" width="16" height="18" border="0" alt="Story 1" /></a><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg1');autoDiv=0;return false;"><img src="slideshow/no2.jpg" width="16" height="18" border="0" alt="Story 2" /></a><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg2');autoDiv=0;return false;"><img src="slideshow/no3.jpg" width="16" height="18" border="0" alt="Story 3" /></a><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg3');autoDiv=0;return false;"><img src="slideshow/no4.jpg" width="16" height="18" border="0" alt="Story 4" /></a><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg4');autoDiv=0;return false;"><img src="slideshow/no5.jpg" width="16" height="18" border="0" alt="Story 5" /></a>
                             </div>
                              </nobr></td>
                            <td align="center" valign="middle" width="21"><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg0');autoDiv=0;return false;"><img src="images/previousbutton.jpg" width="18" height="18" border="0" alt="Previous" /></a></td>
                            <td align="center" valign="middle" width="16"><a href="#" onclick="autoDiv=0;return false;"><img src="images/pausebutton.jpg" width="18" height="18" border="0" alt="Pause" /></a></td>
                            <td align="center" valign="middle" width="21"><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg2');autoDiv=0;return false;"><img src="images/nextbutton.jpg" width="18" height="18" border="0" alt="Next" /></a></td>
                          </tr>
                      </table></td>
                    </tr>
                    <tr>
                      <td height="320" align="center" valign="bottom" style="background: url(slideshow/slide2.jpg) no-repeat;"><table width="320" height="28" cellspacing="0" cellpadding="0" border="0">
                          <tr>
                            <td height="1" style="background: #ffffff;"><img src="spacer.gif" width="1" height="1" alt="" /></td>
                          </tr>
                          <tr>
                            <td height="26" align="left" valign="middle" class="storyoverlay style1 style2" style="padding-left: 15px; padding-right: 10px;"><font color="#00FFFF">
                              <center>
                                <b><%=(rsslideshow.Fields.Item("varheader").Value)%></b>
                              </center>
                            </font></td>
                          </tr>
                          <tr>
                            <td height="1" style="background: #ffffff;"><img src="spacer.gif" width="1" height="1" alt="" /></td>
                          </tr>
                      </table></td>
                    </tr>
                    <tr>
                      <td height="2" style="background: #999999;"><img src="spacer.gif" width="1" height="2" alt="" /></td>
                    </tr>
                    <tr>
                      <td height="110" style="background: #ffffff; padding-left: 14px; padding-right: 14px; padding-top: 14px; padding-bottom: 8px;" align="left" valign="top" class="storytext"><span class="style30"><%=(rsslideshow.Fields.Item("varbodytext").Value)%></span></td>
                    </tr>
                    <tr>
                      <td height="5" style="background: #ffffff;" align="center" valign="top" class="storylinks"></td>
                    </tr>
                    <tr>
                      <td height="1" style="background: #999999;"><img src="spacer.gif" width="1" height="1" alt="" /></td>
                    </tr>
                  </table>
                </div>
                
<% rsslideshow.MoveNext() %>                
            
                <div id="dropmsg2" style="z-index: 3; display:none; ">
                  <table width="320" height="320" cellspacing="0" cellpadding="0" border="0">
                    <tr>
                      <td height="19"><table width="320" height="19" cellspacing="0" cellpadding="0" border="0" style="background-color: #FFFFFF;">
                          <tr>
                            <td align="left" valign="top"><img src="slideshow/slideheading.jpg" width="167" height="18" /></td>
                            <td width="93" align="right" valign="middle" style="padding-right:5px;"><nobr> 
                            
                            <div align="right">
                            <a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg0');autoDiv=0;return false;"><img src="slideshow/no1.jpg" width="16" height="18" border="0" alt="Story 1" /></a><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg1');autoDiv=0;return false;"><img src="slideshow/no2.jpg" width="16" height="18" border="0" alt="Story 2" /></a><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg2');autoDiv=0;return false;"><img src="slideshow/no3.jpg" width="16" height="18" border="0" alt="Story 3" /></a><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg3');autoDiv=0;return false;"><img src="slideshow/no4.jpg" width="16" height="18" border="0" alt="Story 4" /></a><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg4');autoDiv=0;return false;"><img src="slideshow/no5.jpg" width="16" height="18" border="0" alt="Story 5" /></a> 
                            </div>
                            </nobr></td>
                            <td align="center" valign="middle" width="21"><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg1');autoDiv=0;return false;"><img src="images/previousbutton.jpg" width="18" height="18" border="0" alt="Previous" /></a></td>
                            <td align="center" valign="middle" width="18"><a href="#" onclick="autoDiv=0;return false;"><img src="images/pausebutton.jpg" width="18" height="18" border="0" alt="Pause" /></a></td>
                            <td align="center" valign="middle" width="21"><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg3');autoDiv=0;return false;"><img src="images/nextbutton.jpg" width="18" height="18" border="0" alt="Next" /></a></td>
                          </tr>
                      </table></td>
                    </tr>
                    <tr>
                      <td height="320" align="center" valign="bottom" style="background: url(slideshow/slide3.jpg) no-repeat;"><table width="320" height="28" cellspacing="0" cellpadding="0" border="0">
                          <tr>
                            <td height="1" style="background: #ffffff;"><img src="spacer.gif" width="1" height="1" alt="" /></td>
                          </tr>
                          <tr>
                            <td height="26" align="left" valign="middle" class="storyoverlay style1 style2" style="padding-left: 15px; padding-right: 10px;"><font color="#00FFFF">
                              <center>
                                <b><%=(rsslideshow.Fields.Item("varheader").Value)%></b>
                              </center>
                            </font></td>
                          </tr>
                          <tr>
                            <td height="1" style="background: #ffffff;"><img src="spacer.gif" width="1" height="1" alt="" /></td>
                          </tr>
                      </table></td>
                    </tr>
                    <tr>
                      <td height="2" style="background: #999999;"><img src="spacer.gif" width="1" height="2" alt="" /></td>
                    </tr>
                    <tr>
                      <td height="110" style="background: #ffffff; padding-left: 14px; padding-right: 14px; padding-top: 14px; padding-bottom: 8px;" align="left" valign="top" class="storytext"><span class="style15"><span class="style30"><%=(rsslideshow.Fields.Item("varbodytext").Value)%></span></span></td>
                    </tr>
                    <tr>
                      <td height="5" style="background: #ffffff;" align="center" valign="top" class="storylinks"></td>
                    </tr>
                    <tr>
                      <td height="1" style="background: #999999;"><img src="spacer.gif" width="1" height="1" alt="" /></td>
                    </tr>
                  </table>
                </div>
                
<% rsslideshow.MoveNext() %>                
                
                <div id="dropmsg3" style="z-index: 2; display:none; ">
                  <table width="320" height="320" cellspacing="0" cellpadding="0" border="0">
                    <tr>
                      <td height="19"><table width="320" height="19" cellspacing="0" cellpadding="0" border="0" style="background-color: #FFFFFF;">
                          <tr>
                            <td width="167" align="left" valign="top"><img src="slideshow/slideheading.jpg" width="167" height="18" /></td>
                            <td width="93" align="right" valign="middle" style= "padding-right: 5px;"><nobr>
                            <div align="right">
                             <a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg0');autoDiv=0;return false;"><img src="slideshow/no1.jpg" width="16" height="18" border="0" alt="Story 1" /></a><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg1');autoDiv=0;return false;"><img src="slideshow/no2.jpg" width="16" height="18" border="0" alt="Story 2" /></a><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg2');autoDiv=0;return false;"><img src="slideshow/no3.jpg" width="16" height="18" border="0" alt="Story 3" /></a><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg3');autoDiv=0;return false;"><img src="slideshow/no4.jpg" width="16" height="18" border="0" alt="Story 4" /></a><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg4');autoDiv=0;return false;"><img src="slideshow/no5.jpg" width="16" height="18" border="0" alt="Story 5" /></a> 
                             </div>
                             </nobr></td>
                            <td align="center" valign="middle" width="21"><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg2');autoDiv=0;return false;"><img src="images/previousbutton.jpg" width="18" height="18" border="0" alt="Previous" /></a></td>
                            <td align="center" valign="middle" width="18"><a href="#" onclick="autoDiv=0;return false;"><img src="images/pausebutton.jpg" width="18" height="18" border="0" alt="Pause" /></a></td>
                            <td align="center" valign="middle" width="21"><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg4');autoDiv=0;return false;"><img src="images/nextbutton.jpg" width="18" height="18" border="0" alt="Next" /></a></td>
                          </tr>
                      </table></td>
                    </tr>
                    <tr>
                      <td height="320" align="center" valign="bottom" style="background: url(slideshow/slide4.jpg) no-repeat;"><table width="320" height="28" cellspacing="0" cellpadding="0" border="0">
                          <tr>
                            <td height="1" style="background: #ffffff;"><img src="spacer.gif" width="1" height="1" alt="" /></td>
                          </tr>
                          <tr>
                            <td height="26" align="left" valign="middle" class="storyoverlay style1 style2" style="padding-left: 15px; padding-right: 10px;"><font color="#00FFFF">
                              <center>
                                <b><%=(rsslideshow.Fields.Item("varheader").Value)%></b>
                              </center>
                            </font></td>
                          </tr>
                          <tr>
                            <td height="1" style="background: #ffffff;"><img src="spacer.gif" width="1" height="1" alt="" /></td>
                          </tr>
                      </table></td>
                    </tr>
                    <tr>
                      <td height="2" style="background: #999999;"><img src="spacer.gif" width="1" height="2" alt="" /></td>
                    </tr>
                    <tr>
                      <td height="110" style="background: #ffffff; padding-left: 14px; padding-right: 14px; padding-top: 14px; padding-bottom: 8px;" align="left" valign="top" class="storytext"><span class="style15"><span class="style30"><%=(rsslideshow.Fields.Item("varbodytext").Value)%></span></span></td>
                    </tr>
                    <tr>
                      <td height="5" style="background: #ffffff;" align="center" valign="top" class="storylinks"></td>
                    </tr>
                    <tr>
                      <td height="1" style="background: #999999;"><img src="spacer.gif" width="1" height="1" alt="" /></td>
                    </tr>
                  </table>
                </div>
                
<% rsslideshow.MoveNext() %>                  
                
                <div id="dropmsg4" style="z-index: 1; display:none; ">
                  <table width="320" height="320" cellspacing="0" cellpadding="0" border="0">
                    <tr>
                      <td height="19"><table width="320" height="19" cellspacing="0" cellpadding="0" border="0" style="background-color: #FFFFFF;">
                          <tr>
                            <td width="167" align="left" valign="top"><img src="slideshow/slideheading.jpg" /></td>
                            <td width="93" align="right" valign="middle" style= "padding-right: 5px;"><nobr> 
                            <div align="right">
                            <a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg0');autoDiv=0;return false;"><img src="slideshow/no1.jpg" width="16" height="18" border="0" alt="Story 1" /></a><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg1');autoDiv=0;return false;"><img src="slideshow/no2.jpg" width="16" height="18" border="0" alt="Story 2" /></a><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg2');autoDiv=0;return false;"><img src="slideshow/no3.jpg" width="16" height="18" border="0" alt="Story 3" /></a><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg3');autoDiv=0;return false;"><img src="slideshow/no4.jpg" width="16" height="18" border="0" alt="Story 4" /></a><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg4');autoDiv=0;return false;"><img src="slideshow/no5.jpg" width="16" height="18" border="0" alt="Story 5" /></a> 
                            </div>
                            </nobr></td>
                            <td align="center" valign="middle" width="21"><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg3');autoDiv=0;return false;"><img src="images/previousbutton.jpg" width="18" height="18" border="0" alt="Previous" /></a></td>
                            <td align="center" valign="middle" width="18"><a href="#" onclick="autoDiv=0;return false;"><img src="images/pausebutton.jpg" width="18" height="18" border="0" alt="Pause" /></a></td>
                            <td align="center" valign="middle" width="21"><a href="#" onclick="changeHomepageStoriesPackageTab('dropmsg0');autoDiv=0;return false;"><img src="images/nextbutton.jpg" width="18" height="18" border="0" alt="Next" /></a></td>
                          </tr>
                      </table></td>
                    </tr>
                    <tr>
                      <td height="320" align="center" valign="bottom" style="background: url(slideshow/slide5.jpg) no-repeat;"><table width="320" height="28" cellspacing="0" cellpadding="0" border="0">
                          <tr>
                            <td height="1" style="background: #ffffff;"><img src="spacer.gif" width="1" height="1" alt="" /></td>
                          </tr>
                          <tr>
                            <td height="26" align="left" valign="middle" class="storyoverlay style1 style2" style="padding-left: 15px; padding-right: 10px;"><font color="#00FFFF">
                              <center>
                                <b><%=(rsslideshow.Fields.Item("varheader").Value)%></b>
                              </center>
                            </font></td>
                          </tr>
                          <tr>
                            <td height="1" style="background: #ffffff;"><img src="spacer.gif" width="1" height="1" alt="" /></td>
                          </tr>
                      </table></td>
                    </tr>
                    <tr>
                      <td height="2" style="background: #999999;"><img src="spacer.gif" width="1" height="2" alt="" /></td>
                    </tr>
                    <tr>
                      <td height="110" style="background: #ffffff; padding-left: 14px; padding-right: 14px; padding-top: 14px; padding-bottom: 8px;" align="left" valign="top" class="storytext"><span class="style15"><span class="style30"><%=(rsslideshow.Fields.Item("varbodytext").Value)%></span>.</span></td>
                    </tr>
                    <tr>
                      <td height="5" style="background: #ffffff;" align="center" valign="top" class="storylinks"></td>
                    </tr>
                    <tr>
                      <td height="1" style="background: #999999;"><img src="spacer.gif" width="1" height="1" alt="" /></td>
                    </tr>
                  </table>
                </div>
              </div>
              
<% rsslideshow.MoveNext() %>                
              
              </td>
      </tr>
    </table>
        
        
        
        </div>
      
 
        
            <div align="center"></div>
        
        
        <div align="center" class="maintext"><%=(rsmaincontent.Fields.Item("content").Value)%></div>
        <form name="emaillist" method="post" action="">
        <div class="mailinglist">
          <div class="mailinglistheader">&nbsp;&nbsp;Join our Mailing List</div>
          <div class="mailinglistcontent">
            <div align="center">
              <div class="enteremail">enter your email:</div> 
              <input name="maillist" type="text" size="20">
              <input name="emaillist" type="button" value="sign up">
            </div>
          </div> 
        </div>
</form>        </td>
        <td width="420" valign="top" bgcolor="#FFFFFF">
          <div class="nflbg"><%=(rsnfl.Fields.Item("nfl").Value)%></div>
          <div class="newsheader"><img src="images/newstopper.jpg" width="400" height="27"></div> 
                 
         <div class="newscontent">
           <% 
While ((Repeat1__numRows <> 0) AND (NOT rsnews.EOF)) 
%>
             <table width="379" border="0">
               
               <tr>
                 <td width="65" valign="top"><img src="images/dot.jpg" width="6" height="8">&nbsp;&nbsp;&nbsp;<span class="style9"><strong><%=(rsnews.Fields.Item("vdate").Value)%></strong></span></td>
                  <td width="18" valign="top"><strong>&nbsp;&nbsp;-</strong></td>
                  <td width="282" valign="top"><%=(rsnews.Fields.Item("vnews").Value)%> </td>
                </tr>                              
             </table>
             <% 
  Repeat1__index=Repeat1__index+1
  Repeat1__numRows=Repeat1__numRows-1
  rsnews.MoveNext()
Wend
%>
</div>
          
          
           <div class="videobox">
           
             <script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0','width','350','height','263','id','FLVPlayer','src','FLVPlayer_Progressive','flashvars','&MM_ComponentVersion=1&skinName=Corona_Skin_3&streamName=video/FLAGMOVIE&autoPlay=false&autoRewind=false','quality','high','scale','noscale','name','FLVPlayer','salign','lt','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','FLVPlayer_Progressive' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="350" height="263" id="FLVPlayer">
               <param name="movie" value="FLVPlayer_Progressive.swf" />
               <param name="salign" value="lt" />
               <param name="quality" value="high" />
               <param name="scale" value="noscale" />
               <param name="FlashVars" value="&MM_ComponentVersion=1&skinName=Corona_Skin_3&streamName=video/FLAGMOVIE&autoPlay=false&autoRewind=false" />
               <embed src="FLVPlayer_Progressive.swf" flashvars="&MM_ComponentVersion=1&skinName=Corona_Skin_3&streamName=video/FLAGMOVIE&autoPlay=false&autoRewind=false" quality="high" scale="noscale" width="350" height="263" name="FLVPlayer" salign="LT" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" />             
</object></noscript>
        </div>        </td>
      </tr>
    </table>
  </div>
<div class="footer"><!-- end #footer -->
  <%=(rsfooter.Fields.Item("content").Value)%></div>
<!-- end #container --></div>
 
 
<script type="text/javascript">
<!--
window.addEvent('domready', function() {
var opt = {
    slides: 'qslide2',
    duration: 1500,
    buttons: {next:'go-next',prev:'go-prev'},
    transition: Fx.Transitions.Quint.easeOut
  }
  var scroller = new QScroller('qscroller2',opt);
  scroller.load();
});
//-->
</script>
 
</body>
</html>
<%
rsnewsscroller.Close()
Set rsnewsscroller = Nothing
%>
<%
rsnfl.Close()
Set rsnfl = Nothing
%>
<%
rspicbox.Close()
Set rspicbox = Nothing
%>
<%
rsmaincontent.Close()
Set rsmaincontent = Nothing
%>
<%
rsnews.Close()
Set rsnews = Nothing
%>
<%
rsslideshow.Close()
Set rsslideshow = Nothing
%>
<%
rsfooter.Close()
Set rsfooter = Nothing
%>
<%
rsscorebox.Close()
Set rsscorebox = Nothing
%>
[+][-]12/02/08 07:27 PM, ID: 23082955Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zones: Cascading Style Sheets (CSS), Extensible HTML (XHTML), Hypertext Markup Language (HTML)
Sign Up Now!
Solution Provided By: quincydude
Participating Experts: 2
Solution Grade: A
 
[+][-]12/02/08 08:01 PM, ID: 23083135Assisted Solution

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 30-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]12/02/08 09:05 PM, ID: 23083354Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091021-EE-VQP-81 - Hierarchy / EE_QW_2_20070628