<html>
<head>
<title>PA-Softball.com</title>
<meta name="Author" content="Thomas Brattli (webmaster@dhtmlcentral.com)">
<META NAME="Generator" CONTENT="Designer:Thomas Brattli (www.bratta.com)">
<meta name="KeyWords" content="DHTML, HTML, Dynamic HTML, Javascript, Cascading Style Sheets, Cross-browser, Cross browser, Javascripts, DOM, Scripts, Free Scripts,menu,foldoutmenu,hierarchical,expandable,collapsable,outlines,">
<meta name="Description" content="Dynamic HTML Central - The ultimate place to find DHTML scripts, demos, tutorials and help.">
<style type="text/css">
#divCont {position:absolute; z-index:1; left:5px; top:70px; height:200px; width:170px; visibility:hidden;}
.clTop   {position:absolute; z-index:1; width:170px; line-height:17px;}
.clSub   {position:absolute; z-index:1; left:0px; top:20px; width:170px; line-height:14px;}

#divExpand {position:absolute; z-index:1; left:5px; top:40px; height:100px; width:170px; visibility:visible;}
.Expand   {position:absolute; z-index:1; width:170px; line-height:14px;}
body {color:#FFFFFF; font-family:verdana,arial,helvetica,sans-serif; font-size:10px; font-weight:bold; text-decoration:none; scrollbar-base-color:#000000;scrollbar-arrow-color:#ccc;}
a {color:#FFFFFF; font-family:verdana,arial,helvetica,sans-serif; font-size:10px; font-weight:bold; text-decoration:none;}
a:hover {color:#AAAAAA; text-decoration:none;}


/*** This sets the style for the links inside the menu. ***/
#divCont .clTop a {color:#FFFFFF; font-family:verdana,arial,helvetica,sans-serif; font-size:14px; font-weight:bold; text-decoration:none;}
#divCont .clTop a:hover {color:#AAAAAA; text-decoration:none;}
#divCont .clTop .clSub a {color:#EEEEEE; font-family:verdana,arial,helvetica,sans-serif; font-size:12px; font-weight:normal; text-decoration:none;}
#divCont .clTop .clSub a:hover {color:#FF0000; text-decoration:none; font-weight:bold;}  
</style>
<script language="JavaScript" type="text/javascript">
/**********************************************************************************   
FoldoutMenu 
*   Copyright (C) 2001 <a href="/dhtmlcentral/thomas_brattli.asp">Thomas Brattli</a>
*   This script was released at DHTMLCentral.com
*   Visit for more great scripts!
*   This may be used and changed freely as long as this msg is intact!
*   We will also appreciate any links you could give us.
*
*   Made by <a href="/dhtmlcentral/thomas_brattli.asp">Thomas Brattli</a> 
*********************************************************************************/

function lib_bwcheck(){ //Browsercheck (needed)
	this.ver=navigator.appVersion
	this.agent=navigator.userAgent
	this.dom=document.getElementById?1:0
	this.opera5=this.agent.indexOf("Opera 5")>-1
	this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom && !this.opera5)?1:0; 
	this.ie6=(this.ver.indexOf("MSIE 6")>-1 && this.dom && !this.opera5)?1:0;
	this.ie7=(this.ver.indexOf("MSIE 7")>-1 && this.dom && !this.opera5)?1:0;
	this.ie8=(this.ver.indexOf("MSIE 8")>-1 && this.dom && !this.opera5)?1:0;
	this.ie4=(document.all && !this.dom && !this.opera5)?1:0;
	this.ie=this.ie4||this.ie5||this.ie6||this.ie7||this.ie8
	this.mac=this.agent.indexOf("Mac")>-1
	this.ns6=(this.dom && parseInt(this.ver) >= 5) ?1:0; 
	this.ns4=(document.layers && !this.dom)?1:0;
	this.bw=(this.ie8 || this.ie7 || this.ie6 || this.ie5 || this.ie4 || this.ns4 || this.ns6 || this.opera5)
	return this
}
var bw=new lib_bwcheck()



/*** variables you can configure ***/

FoldNumber = 8		//How many toplinks do you have?  MGB
var stayFolded = true	//Stay open when you click a new toplink?
foldImg = 1		//Do you want images (if not set to 0 and remove the images from the body)?
mainOffsetY = -10	//Vertical space adjustment between the main items, in pixels.

//This is the default image.
//Remember to change the actual images in the page as well, but remember to keep the name of the image.
var unImg=new Image();
unImg.src='/images/foldoutmenu_arrow.gif'

var exImg=new Image();					//Making an image variable...
exImg.src='/images/foldoutmenu_arrow_open.gif'	//...this is the source of the image that it changes to when the menu expands.

// NOTE: if you change the position of divCont from absolute to relative, you can put the foldoutmenu in a table.
// HOWEVER it will no longer work in netscape 4. If you wish to support netscape 4, you have to use absolute positioning.

/*** There should be no need to change anything beyond this. ***/

// A unit of measure that will be added when setting the position of a layer.
var px = bw.ns4||window.opera?"":"px";

if(navigator.userAgent.indexOf('Opera')>-1 && document.getElementById){ //Opera 5 resize fix.
	scrX= innerWidth; scrY= innerHeight;
	document.onmousemove= function(){
		if(scrX<innerWidth-10 || scrY<innerHeight-10 || scrX>innerWidth+10 || scrY>innerHeight+10){
			scrX = innerWidth;
			scrY = innerHeight;
			initFoldout();
		}
	};
}

//object constructor...
function makeMenu(obj,nest){
	nest= (!nest)?"":'document.'+nest+'.';
	this.el= bw.ie4?document.all[obj]:bw.ns4?eval(nest+'document.'+obj):document.getElementById(obj);	
   	this.css= bw.ns4?this.el:this.el.style;
	this.ref= bw.ns4?this.el.document:document;		
	this.x= (bw.ns4||bw.opera5)?this.css.left:this.el.offsetLeft;
	this.y= (bw.ns4||bw.opera5)?this.css.top:this.el.offsetTop;
	this.h= (bw.ie||bw.ns6)?this.el.offsetHeight:bw.ns4?this.ref.height:bw.opera5?this.css.pixelHeight:0;
    this.vis= b_vis;
	this.hideIt= b_hideIt;
    this.showIt= b_showIt;
    this.moveIt= b_moveIt;
	return this
}
//object methods...
function b_showIt(){this.css.visibility='visible'}
function b_hideIt(){this.css.visibility='hidden'}
function b_vis(){if(this.css.visibility=='hidden' || this.css.visibility=='HIDDEN' || this.css.visibility=='hide') return true;}
function b_moveIt(x,y){this.x=x; this.y=y; this.css.left=this.x+px; this.css.top=this.y+px}

/************************************************************************************
This is the function that changes the sub menus to folded or unfolded state.
************************************************************************************/
function closeall(){
	if(bw.bw){
		
			for (var i=0; i<oSub.length; i++){
				
					oSub[i].hideIt()
					if (foldImg)oTop[i].ref["imgA"+i].src = unImg.src
				
			}
			for(var i=1; i<oTop.length; i++){
				oTop[i].moveIt(0,oTop[i-1].y+oTop[i-1].h)
			}
		
//		if (oSub[num].vis()){
//			oSub[num].showIt()
//			if (foldImg)oTop[num].ref["imgA"+num].src = exImg.src
//		}else{
//			oSub[num].hideIt()
//			if(foldImg)oTop[num].ref["imgA"+num].src = unImg.src
//		}
		for(var i=1; i<oTop.length; i++){ 
			if (!oSub[i-1].vis()) oTop[i].moveIt(0,oTop[i-1].y+oTop[i-1].h+oSub[i-1].h+mainOffsetY) 
			else oTop[i].moveIt(0,oTop[i-1].y+oTop[i-1].h+mainOffsetY)
		}
	}
}

/************************************************************************************
This is the function that changes the sub menus to folded or unfolded state.
************************************************************************************/
function menu(num){
	if(bw.bw){
		if (!stayFolded){
			for (var i=0; i<oSub.length; i++){
				if (i!=num){
					oSub[i].hideIt()
					if (foldImg)oTop[i].ref["imgA"+i].src = unImg.src
				}
			}
			for(var i=1; i<oTop.length; i++){
				oTop[i].moveIt(0,oTop[i-1].y+oTop[i-1].h)
			}
		}
		if (oSub[num].vis()){
			oSub[num].showIt()
			if (foldImg)oTop[num].ref["imgA"+num].src = exImg.src
		}else{
			oSub[num].hideIt()
			if(foldImg)oTop[num].ref["imgA"+num].src = unImg.src
		}
		for(var i=1; i<oTop.length; i++){ 
			if (!oSub[i-1].vis()) oTop[i].moveIt(0,oTop[i-1].y+oTop[i-1].h+oSub[i-1].h+mainOffsetY) 
			else oTop[i].moveIt(0,oTop[i-1].y+oTop[i-1].h+mainOffsetY)
		}
	}
}

/*********************************************************************
The init function... there should be no need to change anything here.
*********************************************************************/
function initFoldout(){
	//Fixing the browsercheck for opera... this can be removed if the browsercheck has been updated!!
	bw.opera5 = (navigator.userAgent.indexOf("Opera")>-1 && document.getElementById)?true:false
	if (bw.opera5) bw.ns6 = 0

	oTop = new Array()
	oSub = new Array()
	//Making the objects and hiding the subs...
	for (var i=0; i<FoldNumber; i++){
		oTop[i] = new makeMenu('divTop'+i,'divCont')
		oSub[i] = new makeMenu('divSub'+i,'divCont.document.divTop'+i)
		oSub[i].hideIt()
	}
	
	//Positioning the top objects...
	oTop[0].moveIt(0,0)
	for (var i=1; i<oTop.length; i++){
		oTop[i].moveIt(0, oTop[i-1].y+oTop[i-1].h+mainOffsetY)
	}
	
	//Making the containing menu object and showing it...
	oCont = new makeMenu('divCont')
	oCont.showIt()
}

// If the browser is ok, the script is started onload...
if(bw.bw) onload = initFoldout;
</script>
</head>

<script language=javascript><!-- 

 --></script><script language=javascript><!-- 

 --></script><body marginleft="0" marginheight="0" bgcolor="#000000">

<div style="position: absolute; left: 130px; top: 20px; width: 30px; height: 30px; z-index: 1"> 
	<a href="#" onclick="parent.frameset2.cols='1,*'"><img src="/images/close_button_red.gif" alt="Close Frame" border=0></a>
</div>

<div id="divExpand" class="Expand"> 
	<a href="#" onClick="closeall(); menu(0); menu(1); menu(2); menu(3); menu(4); menu(5); menu(6); menu(7);  return false">Expand All</a> ~ <a href="#" onClick="closeall()">Close All</a>
	<hr align="left" width="130">
</div>

<div id="divCont"> <!-- These are the contents of the foldoutmenu. -->

<div id="divTop0" class="clTop"><a href="#" target="wmain" onclick="menu(0); return false" onfocus="this.blur()"><img src="/images/foldoutmenu_arrow.gif" name="imgA0" width=12 height=12 alt="" border="0"> 2010 Events</a><br>
<div id="divSub0" class="clSub">
	<a href="http://pa-softball.com/2010/schedule.html" target="wmain">2010 Schedule</a><br>
	<a href="http://pa-softball.com/2010/tournaments.html" target="wmain">2010 Tournaments</a><br>
	<a href="http://pa-softball.com/2010/scrimmage.html" target="wmain">Scrimmage Round Robin</a><br>
	<a href="http://pa-softball.com/2010/fling.html" target="wmain">Spring Fling</a><br>
	<a href="http://pa-softball.com/2010/madness.html" target="wmain">Memorial Day Madness</a><br>
	<a href="http://pa-softball.com/2010/jamboree.html" target="wmain">Junebug Jamboree</a><br>
	<a href="http://pa-softball.com/2010/msclassic.html" target="wmain">Mid Summer Classic</a><br>
	<a href="http://pa-softball.com/2010/cup.html" target="wmain">Keystone Cup</a><br>
	<a href="http://www.pa-softball.com/2010/camp.html" target="wmain">Firecracker Showcase Camp</a><br>
	<a href="http://pa-softball.com/2010/showcase.html" target="wmain">Firecracker College Showcase</a><br>
	<a href="http://pa-softball.com/2010/firecracker.html" target="wmain">Independence Day Firecracker</a><br>
	<a href="http://pa-softball.com/2010/recreation.html" target="wmain">Recreation All-Stars</a><br>
	<a href="http://pa-softball.com/2010/sizzler.html" target="wmain">Summer Sizzler</a><br>
	<a href="http://pa-softball.com/2010/recchamp.html" target="wmain">Rec/Class "B" Championships</a><br>
	<a href="http://pa-softball.com/2010/finale.html" target="wmain">Summer Finale</a><br>
	<a href="http://pa-softball.com/2010/fshowcase.html" target="wmain">Fall Showcase</a><br>
	<a href="http://pa-softball.com/2010/fclassic.html" target="wmain">Fall Classic</a><br>
</div><br>
</div>

<div id="divTop1" class="clTop"><a href="#" target="wmain" onclick="menu(1); return false" onfocus="this.blur()"><img src="/images/foldoutmenu_arrow.gif" name="imgA1" width=12 height=12 alt="" border="0"> Tournament Info</a><br>
<div id="divSub1" class="clSub">
	<a href="http://pa-softball.com/2010/schedule.html" target="wmain">2010 Schedule</a><br>
	<a href="http://pa-softball.com/2010/tournaments.html" target="wmain">2010 Tournaments</a><br>
	<a href="http://www.pa-softball.com/registration.html" target="wmain">Online Registration</a><br>
	<a href="http://pa-softball.com/2010/application.pdf" target="wmain">Download Application</a><br>
	<a href="http://www.pa-softball.com/2010/information.html" target="wmain">Tournament Information</a><br>
	<a href="http://www.pa-softball.com/2010/entrants.html" target="wmain">Tournament Entrants</a><br>
	<a href="http://pa-softball.com/feedback.html" target="wmain">Tournament Feedback</a><br>
	<a href="http://www.pa-softball.com/hotel.html" target="wmain">Hotel & Lodging</a><br>
	<a href="http://pa-softball.com/2010/schedule.html" target="wmain">Schedule/Results</a><br>
	<a href="http://www.pa-softball.com/rules.pdf" target="wmain">Tournament Rules</a><br>
	<a href="http://www.pa-softball.com/about.html" target="wmain">About Us</a><br>
	<a href="http://www.pa-softball.com/directions.html" target="wmain">Directions & Maps</a><br>
	<a href="http://www.pa-softball.com/tournament_shirt.pdf" target="wmain">Tournament T-Shirt</a><br>
	<a href="http://www.pa-softball.com/restaurant.html" target="wmain">Restaurant Listing</a><br>
	<a href="http://www.pa-softball.com/attractions.html" target="wmain">Area Events</a><br>
	<a href="http://www.pa-softball.com/hersheypark.pdf" target="wmain">Hersheypark</a><br>
	<a href="http://www.pa-softball.com/faq.html" target="wmain">FAQ</a><br>
	<a href="http://www.weather.com/weather/local/17013?lswe=17013&lwsa=WeatherLocalUndeclared" target="wmain">Local Weather</a><br>
</div><br>
</div>

<div id="divTop2" class="clTop"><a href="#" target="wmain" onclick="menu(2); return false" onfocus="this.blur()"><img src="/images/foldoutmenu_arrow.gif" name="imgA2" width=12 height=12 alt="" border="0"> College Showcase</a><br>
<div id="divSub2" class="clSub">
	<a href="http://www.pa-softball.com/2010/camp.html" target="wmain">Firecracker Showcase Camp</a><br>
	<a href="http://www.pa-softball.com/2010/camp/information.html" target="wmain">Showcase Information</a><br>
	<a href="http://www.pa-softball.com/2010/camp/plregistration.html" target="wmain">Player Registration</a><br>
	<a href="http://www.pa-softball.com/2010/camp/participants.html" target="wmain">Participants</a><br>
	<a href="http://www.pa-softball.com/2010/camp/database.pdf" target="wmain">Participant Database</a><br>
	<a href="http://www.pa-softball.com/2010/camp/ccregistration.html" target="wmain">College Registration</a><br>
	<a href="http://www.pa-softball.com/2010/camp/ccinvited.html" target="wmain">Colleges Invited</a><br>
	<a href="http://www.pa-softball.com/2010/camp/ccattending.pdf" target="wmain">Colleges Attending</a><br>
	<a href="http://www.pa-softball.com/commitments/commitments.cgi" target="wmain">College Commitments</a><br>
</div><br>
</div>

<div id="divTop3" class="clTop"><a href="#" target="wmain" onclick="menu(3); return false" onfocus="this.blur()"><img src="/images/foldoutmenu_arrow.gif" name="imgA3" width=12 height=12 alt="" border="0"> Past Tournaments</a><br>
<div id="divSub3" class="clSub">
	<a href="/home.html" target="wmain">....................</a><br>
	<a href="/home.html" target="wmain">2009 Events</a><br>
	<a href="http://pa-softball.com/2009/schedule.html" target="wmain">2009 Results</a><br>
	<a href="http://pa-softball.com/2009/tournaments.html" target="wmain">2009 Tournaments</a><br>
	<a href="http://pa-softball.com/2009/scrimmage.html" target="wmain">Scrimmage Round Robin</a><br>
	<a href="http://pa-softball.com/2009/fling.html" target="wmain">Spring Fling</a><br>
	<a href="http://pa-softball.com/2009/madness.html" target="wmain">Memorial Day Madness</a><br>
	<a href="http://pa-softball.com/2009/jamboree.html" target="wmain">Junebug Jamboree</a><br>
	<a href="http://pa-softball.com/2009/msclassic.html" target="wmain">Mid Summer Classic</a><br>
	<a href="http://pa-softball.com/2009/cup.html" target="wmain">Keystone Cup</a><br>
	<a href="http://www.pa-softball.com/2009/camp.html" target="wmain">Firecracker Showcase Camp</a><br>
	<a href="http://pa-softball.com/2009/showcase.html" target="wmain">Firecracker College Showcase</a><br>
	<a href="http://pa-softball.com/2009/firecracker.html" target="wmain">Independence Day Firecracker</a><br>
	<a href="http://pa-softball.com/2009/recreation.html" target="wmain">Recreation All-Stars</a><br>
	<a href="http://pa-softball.com/2009/sizzler.html" target="wmain">Summer Sizzler</a><br>
	<a href="http://pa-softball.com/2009/recchamp.html" target="wmain">Rec/Class "B" Championships</a><br>
	<a href="http://pa-softball.com/2009/finale.html" target="wmain">Summer Finale</a><br>
	<a href="http://pa-softball.com/2009/fshowcase.html" target="wmain">Fall Showcase</a><br>
	<a href="http://pa-softball.com/2009/fclassic.html" target="wmain">Fall Classic</a><br>
	<a href="/home.html" target="wmain">....................</a><br>
	<a href="/home.html" target="wmain">2008 Events</a><br>
	<a href="/home.html" target="wmain">....................</a><br>
	<a href="http://pa-softball.com/2008/tournaments.html" target="wmain">2008 Tournaments</a><br>
	<a href="http://pa-softball.com/2008/schedule.html" target="wmain">2008 Results</a><br>
	<a href="http://pa-softball.com/2008/dust.html" target="wmain">Dust off the Rust</a><br>
	<a href="http://pa-softball.com/2008/fling.html" target="wmain">Spring Fling</a><br>
	<a href="http://pa-softball.com/2008/madness.html" target="wmain">Memorial Day Madness</a><br>
	<a href="http://pa-softball.com/2008/mayhem.html" target="wmain">May Mayhem</a><br>
	<a href="http://pa-softball.com/2008/jamboree.html" target="wmain">Junebug Jamboree</a><br>
	<a href="http://pa-softball.com/2008/msclassic.html" target="wmain">Mid Summer Classic</a><br>
	<a href="http://pa-softball.com/2008/cup.html" target="wmain">Keystone Cup</a><br>
	<a href="http://www.pa-softball.com/2008/camp.html" target="wmain">Firecracker Showcase Camp</a><br>
	<a href="http://pa-softball.com/2008/showcase.html" target="wmain">Firecracker College Showcase</a><br>
	<a href="http://pa-softball.com/2008/firecracker.html" target="wmain">Independence Day Firecracker</a><br>
	<a href="http://pa-softball.com/2008/recreation.html" target="wmain">Recreation All-Stars</a><br>
	<a href="http://pa-softball.com/2008/sizzler.html" target="wmain">Summer Sizzler</a><br>
	<a href="http://pa-softball.com/2008/finale.html" target="wmain">Summer Finale</a><br>
	<a href="http://pa-softball.com/2008/fshowcase.html" target="wmain">Fall Showcase</a><br>
	<a href="http://pa-softball.com/2008/fclassic.html" target="wmain">Fall Classic</a><br>
	<a href="/home.html" target="wmain">....................</a><br>
	<a href="/home.html" target="wmain">2007 Events</a><br>
	<a href="/home.html" target="wmain">....................</a><br>
	<a href="http://pa-softball.com/2007/tournaments.html" target="wmain">2007 Tournaments</a><br>
	<a href="http://pa-softball.com/2007/schedule.html" target="wmain">2007 Results</a><br>
	<a href="http://pa-softball.com/2007/dust.html" target="wmain">Dust off the Rust</a><br>
	<a href="http://pa-softball.com/2007/fling.html" target="wmain">Spring Fling</a><br>
	<a href="http://pa-softball.com/2007/madness.html" target="wmain">Memorial Day Madness</a><br>
	<a href="http://pa-softball.com/2007/jamboree.html" target="wmain">Junebug Jamboree</a><br>
	<a href="http://pa-softball.com/2007/msclassic.html" target="wmain">Mid Summer Classic</a><br>
	<a href="http://pa-softball.com/2007/cup.html" target="wmain">Keystone Cup</a><br>
	<a href="http://pa-softball.com/2007/firecracker.html" target="wmain">Independence Day Firecracker</a><br>
	<a href="http://pa-softball.com/2007/showcase.html" target="wmain">Firecracker College Showcase</a><br>
	<a href="http://www.pa-softball.com/2007/camp.html" target="wmain">Firecracker Showcase Camp</a><br>
	<a href="http://pa-softball.com/2007/recreation.html" target="wmain">Recreation All-Stars</a><br>
	<a href="http://pa-softball.com/2007/sizzler.html" target="wmain">Summer Sizzler</a><br>
	<a href="http://pa-softball.com/2007/finale.html" target="wmain">Summer Finale</a><br>
	<a href="http://pa-softball.com/2007/tuneup.html" target="wmain">Fall Tune-Up</a><br>
	<a href="http://pa-softball.com/2007/fclassic.html" target="wmain">Fall Classic</a><br>
	<a href="/home.html" target="wmain">....................</a><br>
	<a href="/home.html" target="wmain">2006 Events</a><br>
	<a href="/home.html" target="wmain">....................</a><br>
	<a href="http://pa-softball.com/2006/tournaments.html" target="wmain">2006 Tournaments</a><br>
	<a href="http://pa-softball.com/2006/schedule.html" target="wmain">2006 Schedule</a><br>
	<a href="http://www.pa-softball.com/2006/entrants.html" target="wmain">Tournament Entrants</a><br>
	<a href="http://pa-softball.com/2006/fling.html" target="wmain">Spring Fling</a><br>
	<a href="http://pa-softball.com/2006/madness.html" target="wmain">Memorial Day Madness</a><br>
	<a href="http://pa-softball.com/2006/jamboree.html" target="wmain">Junebug Jamboree</a><br>
	<a href="http://pa-softball.com/2006/classic.html" target="wmain">Mid Summer Classic</a><br>
	<a href="http://pa-softball.com/2006/firecracker.html" target="wmain">Independence Day Firecracker</a><br>
	<a href="http://pa-softball.com/2006/showcase.html" target="wmain">Firecracker College Showcase</a><br>
	<a href="http://www.pa-softball.com/2006/showcase/showcase.html" target="wmain">Firecracker Showcase Camp</a><br>
	<a href="http://pa-softball.com/2006/recreation.html" target="wmain">Class "B" Recreation</a><br>
	<a href="http://pa-softball.com/2006/wgss.html" target="wmain">Women's Grand Slam</a><br>
	<a href="http://pa-softball.com/2006/sizzler.html" target="wmain">Summer Sizzler</a><br>
	<a href="http://pa-softball.com/2006/finale.html" target="wmain">Summer Finale</a><br>
	<a href="http://pa-softball.com/2006/tuneup.html" target="wmain">Fall Ball Tune-Up</a><br>
	<a href="http://pa-softball.com/2006/fallclassic.html" target="wmain">Fall Classic</a><br>
	<a href="/home.html" target="wmain">....................</a><br>
	<a href="/home.html" target="wmain">2005 Events</a><br>
	<a href="/home.html" target="wmain">....................</a><br>
	<a href="http://pa-softball.com/2005/kickoff.html" target="wmain">Kickoff Classic</a><br>
	<a href="http://pa-softball.com/2005/dust.html" target="wmain">Dust Off The Rust</a><br>
	<a href="http://pa-softball.com/2005/fling.html" target="wmain">Spring Fling</a><br>
	<a href="http://pa-softball.com/2005/madness.html" target="wmain">Memorial Day Madness</a><br>
	<a href="http://pa-softball.com/2005/jamboree.html" target="wmain">Junebug Jamboree</a><br>
	<a href="http://pa-softball.com/2005/states.html" target="wmain">PONY State Championships</a><br>
	<a href="http://pa-softball.com/2005/firecracker.html" target="wmain">Independence Day Firecracker</a><br>
	<a href="http://pa-softball.com/2005/showcase.html" target="wmain">Firecracker College Showcase</a><br>
	<a href="http://www.pa-softball.com/2005/showcase/showcase.html" target="wmain">Firecracker Showcase Camp</a><br>
	<a href="http://pa-softball.com/2005/classic.html" target="wmain">Mid Summer Classic</a><br>
	<a href="http://pa-softball.com/2005/recreation.html" target="wmain">Class "B" Recreation</a><br>
	<a href="http://pa-softball.com/2005/wgss1.html" target="wmain">Women's Grand Slam #1</a><br>
	<a href="/home.html" target="wmain">....................</a><br>
	<a href="/home.html" target="wmain">2004 Events</a><br>
	<a href="/home.html" target="wmain">....................</a><br>
	<a href="http://www.pa-softball.com/2004/showcase/showcase.html" target="wmain">Firecracker College Showcase</a><br>
	<a href="http://www.pa-softball.com/2004/madness.html" target="wmain">Memorial Day Madness</a><br>
	<a href="http://www.pa-softball.com/2004/jamboree.html" target="wmain">June Jamboree</a><br>
	<a href="http://www.pa-softball.com/2004/states.html" target="wmain">PA State Championships</a><br>
	<a href="http://www.pa-softball.com/2004/firecracker.html" target="wmain">Independence Day Firecracker Showcase</a><br>
	<a href="http://www.pa-softball.com/2004/recreation.html" target="wmain">Mid-Atlantic Recreation Championships</a><br>
	<a href="http://www.pa-softball.com/2004/finale.html" target="wmain">Summer Ending Finale</a><br>
	<a href="http://www.pa-softball.com/2004/grandslam.html" target="wmain">Women's Grand Slam</a><br>
	<a href="/home.html" target="wmain">....................</a><br>
	<a href="/home.html" target="wmain">2003 Events</a><br>
	<a href="/home.html" target="wmain">....................</a><br>
	<a href="http://pa-softball.com/2003/Jamboree.html" target="wmain">June Jamboree</a><br>
	<a href="http://pa-softball.com/2003/States.html" target="wmain">State Championships</a><br>
	<a href="http://pa-softball.com/2003/Firecracker.html" target="wmain">Independence Day Firecracker</a><br>
	<a href="http://pa-softball.com/2003/RecStates.html" target="wmain">Recreation States</a><br>
	<a href="http://pa-softball.com/2003/Finale.html" target="wmain">Summer Ending Finale</a><br>
</div><br>
</div>

<div id="divTop4" class="clTop"><a href="#" target="wmain" onclick="menu(4); return false" onfocus="this.blur()"><img src="/images/foldoutmenu_arrow.gif" name="imgA4" width=12 height=12 alt="" border="0"> Forums</a><br>
<div id="divSub4" class="clSub">
	<a href="http://www.pennlive.com/forums/hssoftball/" target="wmain">Pennsylvania HS</a><br>
	<a href="http://pennlive.com/forums/youthsoftball/" target="wmain">Pennsylvania Youth</a><br>
	<a href="http://www.nj.com/forums/hssoftball/" target="wmain">New Jersey HS</a><br>
	<a href="http://www.syracuse.com/forums/hssoftball/" target="wmain">Central New York HS</a><br>
	<a href="http://www.cleveland.com/forums/hssoft/" target="wmain">Clevland Area HS</a><br>
	<a href="http://www.jjhuddle.com/discus/messages/36103/36103.php" target="wmain">JJ Hudddle (OH)</a><br>
	<a href="http://www.nfhs.org/scriptcontent/va_custom/cgi-bin/ultimatebb.cgi?ubb=forum;f=13" target="wmain">NFHS Forum</a><br>
	<a href="http://compchat.com:8080/vbbs/index.php?" target="wmain">Original Fastpitch Forum</a><br>
	<a href="http://eteamz.active.com/fastpitch/boards/index.cfm?m=1,2,3,4" target="wmain">eTeamz Message Boards</a><br>
	<a href="http://pasportswire.rivals.com/forum.asp?sid=963&fid=399&style=1" target="wmain">Sports Fever</a><br>
	<a href="http://www.voy.com/113628/" target="wmain">Virginia Softball</a><br>
	<a href="http://www.gmcgriff.com/refonline/wwwboard/softball/softball.html" target="wmain">Softball Officials</a><br>
	<a href="http://members4.boardhost.com/softballsmack/" target="wmain">Softball Smack</a><br>
</div><br>
</div>

<div id="divTop5" class="clTop"><a href="#" target="wmain" onclick="menu(5); return false" onfocus="this.blur()"><img src="/images/foldoutmenu_arrow.gif" name="imgA5" width=12 height=12 alt="" border="0"> Links</a><br>
<div id="divSub5" class="clSub">
	<a href="http://www.ponysoftball.com" target="wmain">PONY East Zone</a><br>
</div><br>
</div>

<div id="divTop6" class="clTop"><a href="#" target="wmain" onclick="menu(6); return false" onfocus="this.blur()"><img src="/images/foldoutmenu_arrow.gif" name="imgA6" width=12 height=12 alt="" border="0"> Mailing List</a><br>
<div id="divSub6" class="clSub">
	<a href="http://pa-softball.com/mailinglist.html" target="wmain">Join Mailing List</a><br>
</div><br>
</div>

<div id="divTop7" class="clTop"><a href="#" target="wmain" onclick="menu(7); return false" onfocus="this.blur()"><img src="/images/foldoutmenu_arrow.gif" name="imgA7" width=12 height=12 alt="" border="0"> Contact Us</a><br>
<div id="divSub7" class="clSub">
	<a href="/contactUs.html" target="wmain">Contact Info</a><br>
</div><br>
</div>



</div> <!-- Here ends the foldoutmenu. -->




</body>
</html>

