<!--
//this begins the menu script--------------------
//MENU TITLE
eyesys_title="Miracle Products"
//TITLE BACKGROUND COLORS
eyesys_titlecol1="red"
eyesys_titlecol2="blue"
//TITLE COLOR
eyesys_titletext="white"
//MENU & ITEM BACKGROUND COLOR
eyesys_bg="#BAC1D7"
//ITEM BACKGROUND COLOR ON MOUSE OVER
eyesys_bgov="white"
//MENU COLOR
eyesys_cl="BLACK"
//MENU COLOR ON MOUSE OVER
eyesys_clov="red"
//MENU WIDTH
eyesys_width=160
//menu starts here
eyesys_init()
//menu item sintax:  eyesys_item(text,icon,link)
//for no icon use 'null'
eyesys_item('Home Page','home.gif','index.html')
eyesys_item('Miracle Glue',null,'miracle_glue.html')
eyesys_item('Miracle Pads',null,'miracle_hot_cold_packs.html')
eyesys_item('About Us',null,'glue_us.html')
eyesys_item('Link to us',null,'glue_links.html')
eyesys_item('Order Now',null,'glue_order.html')
eyesys_close()
//-->