Casual Catering-Great food at great prices! Beverly, Massachusetts
HOME | ABOUT US | ORDER ONLINE | HOT DISHES | PLATTERS | APPETIZERS
FRESH SALADS | DESSERTS | CONTACT US
CASUAL CATERING
AT SUPER SUB
324 CABOT STREET
BEVERLY, MA 01915
978. 927.4788 FAX 978.927.9504
E-MAIL: ORDER@CASUALCATERING.COM
Paul Guanci opened Casual Catering in 1993 and has been serving great food ever since. Casual Catering is located at Super Sub Shop in downtown Beverly. The Super Sub Shop has been family owned and operated since 1970. Whether you are having a small event at your home, a large event at a hall or your office, we can accommodate all your needs. We use fresh homemade tomato sauces, only quality fruits and vegetables. We have fresh bread and delicious Italian pastas delivered everyday to our store.
#!/usr/bin/perl
##############################################################################
# TextClock Version 1.0.2 #
# Copyright 1996 Matt Wright mattw@worldwidemart.com #
# Created 7/15/96 Last Modified 7/15/96 #
# Scripts Archive at: http://www.worldwidemart.com/scripts/ #
##############################################################################
# COPYRIGHT NOTICE #
# Copyright 1996 Matthew M. Wright All Rights Reserved. #
# #
# TextClock may be used and modified free of charge by anyone so long as #
# this copyright notice and the comments above remain intact. By using this #
# code you agree to indemnify Matthew M. Wright from any liability that #
# might arise from it's use. #
# #
# Selling the code for this program without prior written consent is #
# expressly forbidden. In other words, please ask first before you try and #
# make money off of my program. #
# #
# Obtain permission before redistributing this software over the Internet or #
# in any other medium. In all cases copyright and header must remain intact #
##############################################################################
# Define Variables #
$Display_Week_Day = '1';
$Display_Month = '1';
$Display_Month_Day = '1';
$Display_Year = '1';
$Display_Time = '0';
$Display_Time_Zone = '0';
$Standard_Time_Zone = 'EST';
$Daylight_Time_Zone = 'EDT';
$Display_Link = '0';
# Done #
##############################################################################
@Week_Days = ('Sunday','Monday','Tuesday','Wednesday',
'Thursday','Friday','Saturday');
@Months = ('January','February','March','April','May','June','July',
'August','September','October','November','December');
print "\n\n";
if ($Display_Link != 0) {
print "";
}
($Second,$Minute,$Hour,$Month_Day,
$Month,$Year,$Week_Day,$IsDST) = (localtime)[0,1,2,3,4,5,6,8];
if ($IsDST == 1) {
$Time_Zone = $Daylight_Time_Zone;
}
else {
$Time_Zone = $Standard_Time_Zone;
}
if ($Second < 10) {
$Second = "0$Second";
}
if ($Minute < 10) {
$Minute = "0$Minute";
}
if ($Hour < 10) {
$Hour = "0$Hour";
}
if ($Month_Day < 10) {
$Month_Day = "0$Month_Day";
}
$Year += 1900;
if ($Display_Week_Day != 0) {
print "$Week_Days[$Week_Day]";
if ($Display_Month != 0) {
print ", ";
}
}
if ($Display_Month != 0) {
print "$Months[$Month] ";
}
if ($Display_Month_Day != 0) {
print "$Month_Day";
if ($Display_Year != 0) {
print ", ";
}
}
if ($Display_Year != 0) {
print "$Year";
if ($Display_Time != 0) {
print " - ";
}
elsif ($Display_Time_Zone != 0) {
print " ";
}
}
if ($Display_Time != 0) {
print "$Hour\:$Minute\:$Second";
if ($Display_Time_Zone != 0) {
print " ";
}
}
if ($Display_Time_Zone != 0) {
print "$Time_Zone";
}
if ($Display_Link != 0) {
print " ";
}
exit;
web design and photography by blueSWIRLS.com