i'm not sure if this is the correct place to post this, but i have a li menu with a sub menu that uses javascript. my normal code for a menu would be for instance:
function mmLoadMenus() {
if (window.mm_menu_123456789_0) return;
window.mm_menu_123456789_0_1 = new Menu("Tables",80,16,"Arial, Helvetica, sans-serif",10,"#ffffff","#ffffff","#004E69","#C6282B","center","middle",3,0,1000,-5,7,true,true,true,0,true,true);
the #004E69 is my main color, but i rather want an image slice in there that gets repeat-x. as soon as i put in url(../Images/SubNavSlice.jpg), my java file doesn't work anymore. is there a way for me to add an image in there?
Thanks in advance!
M