function showHeader()
{
	var header = "";

	header =  "<table class='logo'><tr>";
	header += "<td align='center'><a href='index.htm' class='btn'><img src='graphics/images/4-wheel-concepts-logo.gif'></a><p>";
	header += "<img src='graphics/images/listing_logo.gif'>";
	header += "</td>";
	header += "</tr></table>";

	return( header );

}  // end showHeader

function showNav()
{
	var nav = "";


	nav += "<table border='0' cellpadding='10' align='center'>";
	nav += "<tr>";
	nav += "<td align='center'>";
	nav += "<a href='albums/shop/index.htm'>Shop Pics</a> | ";
	nav += "<a href='albums/rides/index.htm'>Customer&rsquo;s Rides</a> | ";
	nav += "<a href='albums/jeeps/index.htm'>Customer&rsquo;s Jeeps</a> | ";
	nav += "<a href='vendors.htm'>Vendors</a> | ";
	nav += "<a href='contact_info.htm'>Contact Info</a>";
	nav += "</td>";
	nav += "</tr>";	
	nav += "</table>";

	return( nav );

}  // end showNav

function showTrailer()
{
	var trailer = "";

	trailer = "<tr>";
	trailer += "<td align='center'>&copy; 2009-2010 4 WHEEL CONCEPTS, All Rights Reserved</td>";
	trailer += "</tr>";
	
	return( trailer );

}  // end showTrailer

function showEKENTrailer()
{
	var etrailer = "";
	var img_dir = "graphics/images/";
		
	etrailer = "<table align=\"center\" border=\"0\" cellspacing=\"5\" cellpadding=\"5\">";
	etrailer += "<tr><td align=\"center\">";
	etrailer += "<a href=\"http://www.ekencreationsltd.com\" target=\"_blank\">";
	etrailer += "<img src=\"" + img_dir + "createdbyeken2.png\" border=\"0\">";
	etrailer += "</a>";
	etrailer += "</td></tr>";
	etrailer += "</table>";
	
	return( etrailer );

}  // end showEKENTrailer


// code for Google Analytics
function googleSetup()
{
	// call this function in the "head" section of each page
	var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
	document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
}  // end googleSetup

function googleTracker()
{
	// call this function just before the </body> tag
	var pageTracker = _gat._getTracker("UA-628582-13");
	pageTracker._initData();
	pageTracker._trackPageview();
}  // end googleTracker
