// Creating and Managing object

var mc = new MenuCreator();

// Menu starts here
mc.Start();
mc.Add("Low&nbsp;Retention&nbsp;(TDT&trade;)","http://medax.com/tips.php?pg2=TDT","_self");
//mc.Add("TITAN Tips&trade;","http://medax.com/tips.php?pg2=titan1","_self");
mc.Add("Standard&nbsp;Tips&nbsp;(XaX&trade;)","http://medax.com/tips.php?pg2=xax","_self");
mc.Add("Filter&nbsp;Tips","http://medax.com/tips.php?pg2=filter","_self");
mc.Add("Packaging","http://medax.com/tips.php?pg2=t_all","_self");
	mc.Start();
	mc.Add("&nbsp;&nbsp;&nbsp;Bulk","http://medax.com/tips.php?pg2=bulk","_self");
	mc.Add("&nbsp;&nbsp;&nbsp;Refills","http://medax.com/tips.php?pg2=ref","_self");
	mc.Add("&nbsp;&nbsp;&nbsp;Racked","http://medax.com/tips.php?pg2=rack","_self");
	mc.Add("&nbsp;&nbsp;&nbsp;Filter&nbsp;Tips","http://medax.com/tips.php?pg2=filter","_self");
	mc.End();
mc.Add("Volume","http://medax.com/tips.php?pg2=s_all","_self");
	mc.Start();
	mc.Add("&nbsp;&nbsp;&nbsp;10 ul","http://medax.com/tips.php?pg2=s10","_self");
	mc.Add("&nbsp;&nbsp;&nbsp;10 ul Extra Reach","http://medax.com/tips.php?pg2=XR10","_self");
	mc.Add("&nbsp;&nbsp;&nbsp;20 ul","http://medax.com/tips.php?pg2=s20","_self");
	mc.Add("&nbsp;&nbsp;&nbsp;100 ul","http://medax.com/tips.php?pg2=s100","_self");
	mc.Add("&nbsp;&nbsp;&nbsp;200 ul","http://medax.com/tips.php?pg2=s200","_self");
	mc.Add("&nbsp;&nbsp;&nbsp;1000 ul Extra Reach","http://medax.com/tips.php?pg2=XR1000","_self");
	mc.End();
mc.End();

// Menu ends here

// if you uncomment this the menu will be vertical instead of horizontal
//mc.Vertical();
// if you uncomment this the box will be centered
// mc.Center();
// if you uncomment this you will have to write the first level youself
//mc.DoNotWriteFirstLevel();

mc.Draw();