// JavaScript Document

// Copyright 2007 Newmandoesit.com


function content_change(cat){
	var id=cat+"_con";
	var obj=document.getElementById(id);
	var title=document.getElementById(cat);
	var header=document.getElementById("contentheader");
	document.getElementById('youth_con').style.display="none";
	document.getElementById('children_con').style.display="none";
	obj.style.display="block";
	document.getElementById('youth').className="min_title_op";
	document.getElementById('children').className="min_title_op";
	title.className="min_title";
	header.innerHTML="<a href='#'>for "+cat+"</a>";	
}

function emailer(who,urla,urlb){
	var a=who;
	var b="@";
	var c=urla;
	var d=".";
	var e=urlb;
	document.write(" <a href='mailto:"+a+b+c+d+e+"'>"+a+b+c+d+e+"</a> ");
}

function img_rand(){
	var topimg = new Array();
	topimg[0] = "http://www.facebook.com/group.php?gid=53797916852";
	topimg[1] = "kids.html";
	topimg[2] = "kids.html";
	topimg[3] = "http://toneyumc.org/bible.html";
	topimg[4] = "mailto:layleader@toneyumc.org";
		
	var img1 = Math.floor(Math.random()*topimg.length);
	var img2 = img1+2
	if(img2 >= 5) img2= img1-3;
	//writting out:   <a href="/news.html#angle"><img src="/top1.gif" border="false" /></a>
	document.write('<a href="'+topimg[img1]+'"><img src="images/top'+img1+'.gif" border="false" /></a>');
	document.write('<a href="'+topimg[img2]+'"><img src="images/top'+img2+'.gif" border="false" /></a>');

}

