<?php
$siteurl = "http://copperheadfab.com";
print <<<EOT
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Copperhead Fabrication</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="stylesheet" type="text/css" href="../stylesheet.css" />
</head>
<body>
<table cellpadding=0 cellspacing=0 align=center>
<tr>
<td colspan=3>
<div id="TopNav">
<!-- START TOP LINKS -->
<div id="TableContainer"><a href="/index.php?action=contactus" >Contact Us</a>
<span class="Pipe1">|</span>
<a href="$siteurl/index.php">Home Page</a>
<span class="Pipe1">|</span>
<a href="$siteurl/index.php?action=aboutus">About Us</a>
</div>
<!-- END TOP LINKS -->
</div>
</td>
</tr><tr>
<td colspan=3 id="TopBorder" align=right>
<a name="top"></a>
<!-- START MAIN NAV -->
<table class="MainNavContainer">
<tr>
<td><a href="$siteurl/index.php" class="
EOT;
if ($action==""){
print "Button2";
}else{
print "Button";
}
print <<<EOT
">Homepage</a></td>
<td><a href="$siteurl/store" class="
EOT;
if ($action=="catalog"){
print "Button2";
}else{
print "Button";
}
print <<<EOT
">Products</a></td>
<td><a href="$siteurl/index.php?action=custom" class="
EOT;
if ($action=="custom"){
print "Button2";
}else{
print "Button";
}
print <<<EOT
">Custom Work</a></td>
<td><a href="$siteurl/index.php?action=photogallery" class="
EOT;
if ($action=="photogallery"){
print "Button2";
}else{
print "Button";
}
print <<<EOT
">Photo Gallery</a></td>
<td><a href="$siteurl/index.php?action=aboutus" class="
EOT;
if ($action=="aboutus"){
print "Button2";
}else{
print "Button";
}
print <<<EOT
">About Us</a></td>
<td><a href="$siteurl/index.php?action=contactus" class="
EOT;
if ($action=="contactus"){
print "Button2";
}else{
print "Button";
}
print <<<EOT
">Contact US</a>
</td>
<td width=30></td>
</tr>
</table>
</td>
</tr><tr>
<!-- END MAIN NAV -->
<!-- START MAIN CONTENT -->
<td class="leftside" valign=top width=36><img src="$siteurl/images/left.jpg"></td>
<td valign=top bg##############################>
<div class="IntroContainer">
</div>
</td>
<td class="rightside" valign=top width=36><img src="$siteurl/images/right.jpg"></td>
</tr><tr>
EOT;
?>
<!-- END MAIN CONTENT -->
<td colspan=3>
<div class="FooterContainer">
<div class="BackToTop"><a href="#top">back to top</a></div>
</div>
<div class="FooterSpacer"></div>
<span class="Green">© <?php date('Y'); ?> Copperhead Fabrication. All Rights Reserved.
</div></td></tr></table>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-1639866-1";
urchinTracker();
</script>
</body>
</html>
that is the existing site template for a website that my friend wants to use zencart instead of the shopping cart that is there. Is there anyway I can just take this code and place it in a zencart template and have the store be in the middle? The site i am playing with isnt live yet but existing site is www.Copperheadfab.com.



