/******************* MENU NUMBER 1 **********************************/

/*** 
This is the menu creation code - place it right after you body tag
Feel free to add this to a stand-alone js file and link it to your page.
**/

//Menu object creation
oMenuDx=new makeCM("oMenuDx") //Making the menu object. Argument: menuname

//Menu properties   
oMenuDx.pxBetween=10
oMenuDx.fromLeft=11
oMenuDx.fromTop=AltezzaMenuDX
oMenuDx.rows=1 
oMenuDx.menuPlacement=0

oMenuDx.offlineRoot="file:///C:/Documents%20and%20Settings/Silvia/Documenti/Ghislierimusica/" 
oMenuDx.onlineRoot="http://www.ghislierimusica.org/" 
oMenuDx.resizeCheck=1 
oMenuDx.wait=1000 
oMenuDx.fillImg="cm_fill.gif"
oMenuDx.zIndex=0



//Background bar properties
oMenuDx.useBar=1
oMenuDx.barWidth="menu"
oMenuDx.barHeight="menu"
oMenuDx.barClass="cl2Bar"
oMenuDx.barX="menu"
oMenuDx.barY="menu"
oMenuDx.barBorderX=0
oMenuDx.barBorderY=0
oMenuDx.barBorderClass=""

//Level properties - ALL properties have to be spesified in level 0
oMenuDx.level[0]=new cm_makeLevel() //Add this for each new level
oMenuDx.level[0].width=110
oMenuDx.level[0].height=25
oMenuDx.level[0].regClass="cl2Level0"
oMenuDx.level[0].overClass="cl2Level0over"
oMenuDx.level[0].borderX=0 
oMenuDx.level[0].borderY=0
oMenuDx.level[0].borderClass=0
oMenuDx.level[0].offsetX=0 
oMenuDx.level[0].offsetY=0
oMenuDx.level[0].rows=1
oMenuDx.level[0].align="left" 


/******************************************
Menu item creation:
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/
oMenuDx.makeMenu('top0','','<b>&nbsp;Mailing list</b>','dx_mail.html')
	
oMenuDx.makeMenu('top1','','&nbsp;Contatti','dx_contatti.html')
	
oMenuDx.makeMenu('top3','','&nbsp;Prossimi concerti','Eventi/prossimi_concerti.php')

oMenuDx.makeMenu('top5','','&nbsp;Ascolti','stampa_audio.php')

oMenuDx.makeMenu('top6','','&nbsp;Foto','stampa_foto.html')

oMenuDx.makeMenu('top2','','&nbsp;Cerca nel sito','ricerca_cerca.html')

//Leave this line - it constructs the menu
oMenuDx.construct()		
