<!-- // Begin Sidebar

// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON

// ONLY USE lowercase FOR ALL OPTIONS




var paragraph_1 	= "yes"		// SHOW TEXT PARAGRAPH
var boxwidth		= "150"		// WIDTH OF THE TEXT BOX
var showimage		= "yes"		// SHOW A SMALL SIDEBAR IMAGE
var linked		= "mission.htm"	// SIDEBAR IMAGE LINK
var sidewidth		= "161"		// WIDTH OF THE LEFT SIDEBAR
var bottomspace		= "10"		// SIDEBAR BOTTOM SPACE
var nudge		= "10"		// NUDGE SIDEBAR DOWN
var printnudge		= "25"		// NUDGE SIDEBAR DOWN (for printing only)



document.write('<div id="sidebar" class="menu-layer">');
document.write('<table cellpadding="0" cellspacing="0" border="0" width="'+sidewidth+'">');
document.write('<tr><td align="center">');
document.write('<img src="picts/spacer.gif" height="'+nudge+'" width="5"><br>');
document.write('<span class="printonly"><img src="picts/spacer.gif" height="'+printnudge+'" width="5"><br></span>');



// START SIDEBAR TEXT - EDIT THIS AREA

// NOTE: If you use a ' add a slash before it like this \'


   if (paragraph_1 == "yes") {

document.write('<table cellpadding="5" cellspacing="0" border="0" width="'+boxwidth+'"><tr><td class="sidetexttitle">');

// START SIDE TEXT TITLE

document.write('Events:<br>');

document.write('</td></tr><tr><td class="sidetext">');

// START NOTE TEXT AREA - EDIT THE NEXT LINE




document.write('Hands in the Community has organized an easy-to-use, caring, professional source of guidance, advocacy, and access to a comprehensive range of Christian services to the people of Tulare County. Our client base is low-income people, mainly families, who need help to cope with daily problems, such as their physical, emotional and spiritual needs.<br><br>');

document.write('More information about Hands in the community can be found on the about us page.<br><br>');


// SIDEBAR LINK

document.write('<a href="about.htm"><img src="picts/more-off.jpg" vspace="6" border="0" onmouseover="this.src=\'picts/more-on.jpg\'" onmouseout="this.src=\'picts/more-off.jpg\'"></a><br>');

document.write('</td></tr></table>');
}







// SMALL PICTURE AREA

   if (showimage == "yes") {
document.write('<br>');
document.write('<a href="'+linked+'"><img src="picts/sidebar.jpg" border="0" width="148" class="bordersSB"></a><br>');

}






document.write('</td></tr></table>');
document.write('</div>');
document.write('<br>');
document.write('<div id="sidebar-spacer">');
document.write('<img src="picts/spacer.gif" height="'+bottomspace+'" width="'+sidewidth+'"><br>');
document.write('</div>');




//  End -->