// 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="101_reg.html"><img src="images/icons/app_101_Banner-bw.gif" alt="101 Membership" 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="upward.html"><img src="images/icons/app_upward_star-bw.gif" alt="Upward Sports" class="thumbnails" /></a><br />';
bottom+='<a href="mmo.html"><img src="images/icons/app_mmo-bw.gif" alt="Moms Morning Out" class="thumbnails" /></a><br />';
bottom+='<a href="http://www.vinepcc.com/" target="_blank"><img src="images/icons/app_vine-bw.gif"  alt="The Vine Counseling Services" class="thumbnails" /></a><br />';


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

