// JavaScript Document
//GSUMC right bar stuff:

var right = '';
var bottom='';
var top='';

// Top Header
var topline='<!--resources:-->';

// Bottom Header
var bottomline='<!--other ministries:-->';	

//Top Components
top+='<a href="https://www.eservicepayments.com/cgi-bin/Vanco_ver3.vps?appver3=Fi1giPL8kwX_Oe1AO50jRoLg7i18WS0cXevzf5UHwf-hjXsUKRLlmI4vCU4-rZZZ2EvVVAEjqawDomKT1pboubrfp75t-HeFX6eTiisTdYA=&ver=3" target=_blank"><img src="images/icons/app_contribute-bw.gif" alt="Contribute Online" class="thumbnails" /></a><br />';
top+='<a href="ACE_reg.html"><img src="images/icons/app_CE-bw.jpg" alt="Christian Education" class="thumbnails" /></a><br />';
top+='<a href="calendar.html"><img src="images/icons/app_cal-bw.gif" alt="GSUMC Calendar" class="thumbnails" /></a><br />';
top+='<a href="GS_Newsletter.pdf" target=_blank"><img src="images/icons/app_news-bw.gif" alt="GSUMC Newsletter" class="thumbnails" /></a><br />';
top+='<a href="mailto:prayers@gslife.org"><img src="images/icons/app_prayers-bw.gif" alt="Prayer Requests" class="thumbnails" /></a><br />';


//Bottom Components
bottom+='<a href="mmo.html"><img src="images/icons/app_mmo-bw.gif" alt="Mothers Morning Out" class="thumbnails" /></a><br />';
bottom+='<a href="counseling.html"><img src="images/icons/app_counseling-bw.gif" alt="Christian Counseling" class="thumbnails" /></a><br />';
bottom+='<a href="upward-2011.html"><img src="images/icons/app_upward_star-bw.gif" alt="Upward Basketball and Cheerleading" class="thumbnails" /></a><br />';


function rightbar(){
	right+='<h3>'+topline+'</h3>';
	right+=top;
	right+='<h3>'+bottomline+'<h3>';
	right+=bottom;
	document.write(right);
}


