come faccio ad aggiungere un'immagine in questo javascript al posto della scritta "Pirelli" (terzultima riga) ?
grazie per l'aiuto!
<script type="text/javascript">
eye.isVertical = 0; //if it's vertical or horizontal [0|1]
eye.x = 150; // x offset from point of insertion on page
eye.y = 200; // y offset from point of insertion on page
eye.w = 200; // item's width
eye.h = 60; // height
eye.r = 200; // menu's radius
eye.v = 40; // velocity
eye.s = 2; // scale in space (for 3D effect)
eye.color = 'black'; // normal text color
eye.colorover = 'black'; // mouseover text color
eye.backgroundcolor = 'white'; // normal background color
eye.backgroundcolorover = '#C0C0C0'; // mouseover background color
eye.bordercolor = 'blue'; //border color
eye.fontsize = 16; // font size
eye.fontfamily = 'BMWTypeRegular'; //font family
if (document.getElementById){
document.write('<div id="spinanchor" style="height:'+eval(eye.h+20)+'"></div>')
eye.anchor=document.getElementById('spinanchor')
eye.spinmenu();
eye.x+=getposOffset(eye.anchor, "center") //relatively position it
eye.y+=getposOffset(eye.anchor, "top") //relatively position it
//menuitem: eye.spinmenuitem(text, link, target)
eye.spinmenuitem("Pirelli","http://tyreclub.pirelli.com");
eye.spinmenuclose();
}
</script>