// Build the menu array
$menu = array ("design" => array ("url" => "",
"alt" => "Graphic Design & Marketing"),
"calendarbox" => array ("url" => "index.php",
"alt" => "Calendarbox (tm)"),
"adcoasters" => array ("url" => "http://www.adcoasters.com/",
"alt" => "Adcoasters (tm)"),
"printworx" => array ("url" => "http://harrimancreative.com/donationbuilder.php",
"alt" => "Donation Builder (tm)"),
"contact" => array ("url" => "mailto:brianh@harrimancreative.com",
"alt" => "Contact Us")
);
// Draw a button
function button ($filename, $url, $description) {
if (file_exists ("images/$filename"."_button.png")) $buttonfile = "images/$filename"."_button.png";
else if (file_exists ("images/$filename"."_button.jpg")) $buttonfile = "images/$filename"."_button.jpg";
else return;
$image_info = getimagesize ($buttonfile);
print ("");
}
?>