<!--
// Array Function
function makeArray() {
var args = makeArray.arguments;
for (var i = 0; i < args.length; i++) {
this[i] = args[i];
}
this.length = args.length;
}
// This array holds the descriptions and names of the pages.
var pages = new makeArray("Select Gifts By Occasion =>",
"Home Page",
"SAMPLE SOUNDS",
"PROMOTIONAL CARDS",
"RECORDABLE CARDS",
"RECORDABLE MODULES",
"RECORDABLE POSTCARD",
"TALKING ENVELOPES",
"POSTCARD MARKETING",
"WEDDING INVITATIONS",
"CD GREETING CARDS",
"MUSICAL GIFT BOX",
"FLASHING BADGES",
"MUSICAL BAGS",
"MUSICAL TEDDY BEARS",
"DIE CUT CDS / DVDS",
"PHOTO COOKIES",
"Wedding Gifts",
"Birthday Gifts",
"Baby Shower Gifts",
"Valentines Day",
"Anniversary Gifts",
"Get Well Gifts",
"Graduation Gifts",
"Christmas Gifts",
"Encouragement Gifts",
"Sympathy Gifts",
"Communion Gifts",
"Fathers Day Gifts",
"Mothers Day Gifts",
"FUNDRAISING OPP");
// This array hold the URLs of the pages.
var urls = new makeArray("",
"../index.html",
"../musical-greetings/sound_modules.html",
"../musical-greetings/promotional-sound-cards.html",
"../musical-greetings/recordable-greeting-cards.html",
"../musical-greetings/recordable-sound-modules.html",
"../musical-greetings/recordable-postcard.html",
"../musical-greetings/recordable-envelopes.html",
"../musical-greetings/postcard-marketing.html",
"../musical-greetings/custom-wedding-invitations.html",
"../greeting-cards.html",
"../musical-greetings/business-promotional-gifts.html",
"../musical-greetings/musical-flashing-badges.html",
"../musical-greetings/promotional-music-bag.html",
"../musical-greetings/promotional-teddy-bears.html",
"../musical-greetings/promotional-custom-cds.html",
"../photo-cookies.html",
"../wedding-gifts.html",
"../birthday-gifts.html",
"../baby-shower-gifts.html",
"../valentines-day-gifts.html",
"../anniversary-gifts.html",
"../get-well-gift.html",
"../graduation-gifts.html",
"../christmas-gifts.html",
"../encouragement-gifts.html",
"../sympathy-gifts.html",
"../communion-gifts.html",
"../fathers-day-gifts.html",
"../mothers-day-gifts.html",
"../fundraising-opportunity.html");
// This function determines which page is selected and goes to it.
function goPage(form) {
i = form.menu.selectedIndex;            
if (i != 0) {
window.location.href = urls[i];  
}
}
//-->

