home *** CD-ROM | disk | FTP | other *** search
- // dynamic menus for Forrest Gump Multimedia website, by Zuf <zuf@forrest.cz>
-
-
-
- // function to init the menu
- function init() {
- if (isMenu) {
- fntCol = "#000000";
- fntBold = false;
- fntItal = false;
- backCol = "#ffffff";
- overCol = "#ffffcc";
- overFnt = "#000000";
- fntSiz = 8;
- fntFam = "sans-serif";
- menuWidth = 120;
- borWid = 1;
- borCol = "#000000";
- borSty = "solid";
- itemPad = 3;
- separator = 1;
- separatorCol = "#000000";
- imgSrc = "images/tri.gif";
- imgSiz = 10;
-
- childOffset = 5;
- childOverlap = null;
- perCentOver = 30;
-
- secondsVisible = .3;
-
- isFrames = false;
- navFrLoc = "left";
- mainFrName = "main";
- }
- }
-
- // function to write to the status
- function msg(msg) {
- window.status=msg;
- }
-
- function bg() {
- document.write("<div id='backg'>");
- document.write("<table width='100%' border='0' cellspacing='0' cellpadding='0'>");
- document.write("<tr><td align='center'>");
- document.write("<table border='0' cellspacing='0' cellpadding='0' width='640'>");
- document.write("<tr>");
- document.write("<td width=68><br></td>");
- document.write("<td width=67><br></td>");
- document.write("<td width=505>");
- document.write("<img src='../images/back_fg.jpg' width=443 height=386 border='0'>");
- document.write("</td></tr></table>");
- document.write("</td></tr></table>");
- document.write("</div>");
- }
-
- function bg2() {
- document.write("<div id='backg'>");
- document.write("<table width='100%' border='0' cellspacing='0' cellpadding='0'>");
- document.write("<tr><td align='center'>");
- document.write("<table border='0' cellspacing='0' cellpadding='0' width='665'>");
- document.write("<tr>");
- document.write("<td width=164 align=right>");
- document.write("<img src='../images/back.jpg' width=161 height=600 border=0></td>");
- document.write("<td width=501><br></td>");
- document.write("</td></tr></table>");
- document.write("</td></tr></table>");
- document.write("</div>");
- }
-
-
-
-