//News
var newsArray = new Array("<tr><td valign='top'><li></td><td><p align='justify' class='news'>Book 4 & 5, 'The Messengers and The Battle Cry', <span class='bold'> Now Available!</span></p></td></tr>");


var linksArray = new Array("<tr><td style='text-align:left;padding-left:3px;'><a href='testimony.html'>View Testimonies</a></td></tr>",
"<tr><td style='text-align:left;padding-left:3px;'><a href='stuff.html'>Get Free Stuff</a></td></tr>",
"<tr><td style='text-align:left;padding-left:3px;'><a href='javascript:f_OpenSurvey()'>Take Our Survey</a></td></tr>",
"<tr><td>&nbsp;</td></tr>",
"<tr><td style='text-align:left;padding-left:3px;'><a href='http://www.christiananswers.com' target='top'>Learn About God</a></td></tr>",
"<tr><td style='text-align:left;padding-left:3px;'><a href='http://www.revelationillustrated.com/artist.asp' target='top'>Pat Marvenko Smith - Artist</a></td></tr>",
"<tr><td style='text-align:left;padding-left:3px;'><a href='http://www.johnlyons.com' target='top'>John Lyons - Horseman</a></td></tr>",
"<tr><td style='text-align:left;padding-left:3px;'><a href='http://www.business-inc.net/' target='top'>Business-Inc.Net</a></td></tr>");


var buyArray = new Array("<tr><td valign='top'><p align='justify' class='news'><b>Family Christian Store</b><br>Century Square<br>2365 Mountain View Drive<br>West Mifflin, PA. 3954<br>412-653-3954</td></tr>",
"<tr><td valign='top'><p align='justify' class='news'><b>Bartolotta Giant Eagle</b><br>Monongahela, PA.</td></tr>",
"<tr><td valign='top'><p align='justify' class='news'><b>Bartolotta Giant Eagle</b><br>Finleyville, PA.</td></tr>",
"<tr><td valign='top'><p align='justify' class='news'><a href='buy.html'>Buy Now</a></tr>");

var disclaimer1 = "The material in the books deal with hard hitting cultural and spiritual issues...<a href='javascript:f_disclaimer();'>more</a>"
var disclaimer2 = "The material in the books deal with hard hitting cultural and spiritual issues. The books are written primarily for children & youth ages ranging from 11 - 15.  If your children are between the ages of 8 -10 parents should consider reading the books with them and use the books as a means to inform them of the dangers in our culture.  The topics in the books are meant to teach that Satan's plan fails every time and that trusting in God is the right choice to make everytime.  The goal of the series is to expose the deeds of Satan's kingdom so that children and youth can see that he seeks to harm them verses God's love for them and His perfect plan for them.  Secondly, it is to encourage children and youth who are not Christians to consider becoming one.  For those who already are Christians, it is my hope that this series will put offer boldness and clarity to the call of God on their life as a young person."

var picArray = new Array("read1.jpg","read2.jpg");

//Display a message
function f_Msg(message){
	var obj = document.getElementById("msg");
	obj.style.visibility = "visible";
	if(navigator.appName == "Microsoft Internet Explorer"){
		obj.innerText = message;
	}else{
		obj.childNodes[0].nodeValue = message;
		obj.style.height = "10px";
		obj.style.textAlign = "center";
	}
	
	setTimeout("f_closeMsg()",1500); 
}
function f_closeMsg(){
	document.getElementById("msg").style.visibility = "hidden";
}

//Display disclaimer
function f_disclaimer(){
	alert(disclaimer2);
}

//Open survey window
function f_OpenSurvey(){
	window.open("survey.html","survey","width=550,height=500,menubar=no,scrollbars=yes,toolbar=no");
}

//Random file method
function f_RandomPic(){
	document.ranPic.src = picArray[Math.floor(Math.random()*2)];
}

//Change the background of main top links
function f_Change(element){
	document.getElementById(element).style.backgroundColor = "#FFFFFF"
}
function f_ChangeBack(element){
	document.getElementById(element).style.backgroundColor = "#E5E6AE"
}