// Created by Jonathan Penney, 2006

function drawHeader()
{
	var imageCount = 6;
	
	var imagesUrl = "images/plants/";
	var imageNumber = Math.floor(Math.random() * imageCount);
	var imageFormat = ".jpg";
	
	var headerImageUrl = imagesUrl + imageNumber + imageFormat;
	
	var output = "<img "
	output += "src=\"" + headerImageUrl + "\" ";
	output += "onclick=\"gotoUrl('index.html')\" ";
	output += "class=\"border-white\" ";
	output += "title=\"Welcome to PRValves, LLC!\" ";
	output += "alt=\"Could not find image at " + headerImageUrl + "\" ";
	output += ">";
	
	return output;
}

function drawFooter()
{
	var output = "";
	
	output += "<p>";
	output += "<a href=\"mailto:prvalves@aol.com\">Email</a> ";
	output += "us today for more information. &copy; 2008 PR Valves, LLC.";
	output += "</p>";
	
	return output;
}
