/*** 
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
oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname

oCMenu.frames = 0

//Menu properties   
oCMenu.pxBetween=10
oCMenu.fromLeft=0
oCMenu.fromTop=175
oCMenu.rows=1 
oCMenu.menuPlacement="center"
                                                             
oCMenu.offlineRoot="file:///C|/Inetpub/wwwroot/dhtmlcentral/projects/coolmenus/examples/" 
oCMenu.onlineRoot="http://www.2planets.co.uk/" 
oCMenu.resizeCheck=1 
oCMenu.wait=1000 
oCMenu.fillImg="cm_fill.gif"
oCMenu.zIndex=40

//Background bar properties
oCMenu.useBar=1
oCMenu.barWidth="10%"
oCMenu.barHeight="menu" 
oCMenu.barClass="clBar"
oCMenu.barX=0
oCMenu.barY=0
oCMenu.barBorderX=0
oCMenu.barBorderY=0
oCMenu.barBorderClass=""

//Level properties - ALL properties have to be spesified in level 0
oCMenu.level[0]=new cm_makeLevel() //Add this for each new level
oCMenu.level[0].width=110
oCMenu.level[0].height=25 
oCMenu.level[0].regClass="clLevel0"
oCMenu.level[0].overClass="clLevel0over"
oCMenu.level[0].borderX=1
oCMenu.level[0].borderY=1
oCMenu.level[0].borderClass="clLevel0border"
oCMenu.level[0].offsetX=0
oCMenu.level[0].offsetY=0
oCMenu.level[0].rows=0
oCMenu.level[0].arrow=0
oCMenu.level[0].arrowWidth=0
oCMenu.level[0].arrowHeight=0
oCMenu.level[0].align="bottom"

//EXAMPLE SUB LEVEL[1] PROPERTIES - You have to specify the properties you want different from LEVEL[0] - If you want all items to look the same just remove this
oCMenu.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
oCMenu.level[1].width=oCMenu.level[0].width-2
oCMenu.level[1].height=22
oCMenu.level[1].regClass="clLevel1"
oCMenu.level[1].overClass="clLevel1over"
oCMenu.level[1].borderX=1
oCMenu.level[1].borderY=1
oCMenu.level[1].align="right" 
oCMenu.level[1].offsetX=-(oCMenu.level[0].width-2)/2+20
oCMenu.level[1].offsetY=0
oCMenu.level[1].borderClass="clLevel1border"


//EXAMPLE SUB LEVEL[2] PROPERTIES - You have to spesify the properties you want different from LEVEL[1] OR LEVEL[0] - If you want all items to look the same just remove this
oCMenu.level[2]=new cm_makeLevel() //Add this for each new level (adding one to the number)
oCMenu.level[2].width=150
oCMenu.level[2].height=20
oCMenu.level[2].offsetX=0
oCMenu.level[2].offsetY=0
oCMenu.level[2].regClass="clLevel2"
oCMenu.level[2].overClass="clLevel2over"
oCMenu.level[2].borderClass="clLevel2border"


/******************************************
Menu item creation:
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/
oCMenu.makeMenu('top0','','Home','index.php?option=com_frontpage&Itemid=1','')
  oCMenu.makeMenu('sub00','top0','News Frontpage','index.php?option=com_frontpage&Itemid=1')
  oCMenu.makeMenu('sub01','top0','Biography','index.php?option=com_content&task=view&id=13&Itemid=29')
  oCMenu.makeMenu('sub02','top0','Profiles','index.php?option=com_content&task=view&id=15&Itemid=33')
  oCMenu.makeMenu('sub03','top0','Blogs','index.php?option=com_content&task=section&id=4&Itemid=32')
  
	 
oCMenu.makeMenu('top1','','News','index.php?option=com_frontpage&Itemid=1')
	oCMenu.makeMenu('sub10','top1','Latest','index.php?option=com_content&task=category&sectionid=1&id=1&Itemid=2')
	oCMenu.makeMenu('sub11','top1','Archive','index.php?option=com_content&task=section&id=1&Itemid=2')
	
oCMenu.makeMenu('top2','','Podcast','index.php?option=com_content&task=blogsection&id=5&Itemid=34')

oCMenu.makeMenu('top3','','Media','index.php?option=com_content&task=section&id=6&Itemid=35')
	oCMenu.makeMenu('sub32','top3','Music','index.php?option=com_content&task=category&sectionid=6&id=17&Itemid=36')
	oCMenu.makeMenu('sub33','top3','Video','index.php?option=com_content&task=category&sectionid=6&id=18&Itemid=37')
	oCMenu.makeMenu('sub34','top3','Wallpapers','index.php?option=com_content&task=view&id=34&Itemid=35')
	
	//oCMenu.makeMenu('sub34','top3','More Downloads','/articles/index.asp')


oCMenu.makeMenu('top4','','Members','index.php?option=com_user&task=UserDetails&Itemid=21')
	//oCMenu.makeMenu('sub40','top4','Login','/forums/forum.asp?FORUM_ID=6&CAT_ID=1&Forum_Title=General+DHTML+issues')
	oCMenu.makeMenu('sub41','top4','Register','index.php?option=com_registration&task=register')
	oCMenu.makeMenu('sub42','top4','My Settings','index.php?option=com_user&task=UserDetails&Itemid=21')
	
oCMenu.makeMenu('top5','','Contact','index.php?option=com_contact&task=view&contact_id=8&Itemid=38')

oCMenu.makeMenu('top6','','TuneTribe Shop','http://www.tunetribe.com/Artist?artist_id=3827')
	oCMenu.makeMenu('sub60','top6','Shop Home','http://www.tunetribe.com/Artist?artist_id=3827')
	oCMenu.makeMenu('sub61','top6','Singles','http://www.tunetribe.com/Album?album_id=754437')
	//oCMenu.makeMenu('sub62','top6','Authentic Stars','')
	oCMenu.makeMenu('sub63','top6','Project One','http://www.tunetribe.com/Album?album_id=48982')
	oCMenu.makeMenu('sub64','top6','To Live the Life','http://www.tunetribe.com/Album?album_id=753631')
	
//oCMenu.makeMenu('top7','','Tell A Friend','mailto:test.html')

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