/*** 
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
theMenu=new makeCM("theMenu") //Making the menu object. Argument: menuname

theMenu.frames = 0

//Menu properties   
theMenu.pxBetween=1
theMenu.fromLeft=20 
theMenu.fromTop=0   
theMenu.rows=1 
theMenu.menuPlacement="center"
                                                             
theMenu.offlineRoot="" 
theMenu.onlineRoot="" 
theMenu.resizeCheck=1 
theMenu.wait=1000 
theMenu.fillImg="cm_fill.gif"
theMenu.zIndex=0

//Background bar properties
theMenu.useBar=1
theMenu.barWidth="100%"
theMenu.barHeight="menu" 
theMenu.barClass="clBar"
theMenu.barX=0 
theMenu.barY=0
theMenu.barBorderX=0
theMenu.barBorderY=0
theMenu.barBorderClass=""

//Level properties - ALL properties have to be spesified in level 0
theMenu.level[0]=new cm_makeLevel() //Add this for each new level
theMenu.level[0].width=80
theMenu.level[0].height=20 
theMenu.level[0].regClass="clLevel0"
theMenu.level[0].overClass="clLevel0over"
theMenu.level[0].borderX=1
theMenu.level[0].borderY=1
theMenu.level[0].borderClass="clLevel0border"
theMenu.level[0].offsetX=0
theMenu.level[0].offsetY=0
theMenu.level[0].rows=0
theMenu.level[0].arrow=0
theMenu.level[0].arrowWidth=0
theMenu.level[0].arrowHeight=0
theMenu.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
theMenu.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
theMenu.level[1].width=130
theMenu.level[1].height=16
theMenu.level[1].regClass="clLevel1"
theMenu.level[1].overClass="clLevel1over"
theMenu.level[1].borderX=1
theMenu.level[1].borderY=1
theMenu.level[1].align="right" 
theMenu.level[1].offsetX=-(theMenu.level[0].width-2)/2+20
theMenu.level[1].offsetY=0
theMenu.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) 
*************************************/
theMenu.makeMenu('top0','','&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SHOP','')
    theMenu.makeMenu('sub000','top0','Auctions','ShopAuctions.html')
    theMenu.makeMenu('sub001','top0','Auto Dealers','ShopAutoDealers.html')
    theMenu.makeMenu('sub002','top0','Auto Parts','ShopAutoParts.html')
    theMenu.makeMenu('sub003','top0','Beauty','ShopBeauty.html')
    theMenu.makeMenu('sub004','top0','Books','ShopBooks.html')
    theMenu.makeMenu('sub005','top0','Clothes','ShopClothes.html')
    theMenu.makeMenu('sub006','top0','Computers','ShopComputers.html')
    theMenu.makeMenu('sub007','top0','Department Stores','ShopDepartmentStores.html')
    theMenu.makeMenu('sub008','top0','Domain Registers','ShopDomainNames.html')
    theMenu.makeMenu('sub009','top0','Drug Stores','ShopDrugStores.html')
    theMenu.makeMenu('sub010','top0','Education','ShopEducation.html')
    theMenu.makeMenu('sub011','top0','Electronics','ShopElectronics.html')
    theMenu.makeMenu('sub012','top0','Furnishings','ShopFurnishings.html')
    theMenu.makeMenu('sub013','top0','Gifts','ShopGifts.html')
    theMenu.makeMenu('sub014','top0','Grocery Stores','ShopGroceryStores.html')
    theMenu.makeMenu('sub015','top0','Hardware Stores','ShopHardwareStores.html')
    theMenu.makeMenu('sub016','top0','Home Repair','ShopHomeRepair.html')
    theMenu.makeMenu('sub017','top0','Hotels','ShopHotels.html')
    theMenu.makeMenu('sub018','top0','Insurance','ShopInsurance.html')
    theMenu.makeMenu('sub019','top0','Jewelry','ShopJewelry.html')
    theMenu.makeMenu('sub020','top0','Movies','ShopMovies.html')
    theMenu.makeMenu('sub021','top0','Music','ShopMusic.html')
    theMenu.makeMenu('sub022','top0','Newstand','ShopNewstand.html')
    theMenu.makeMenu('sub023','top0','Office Supplies','ShopOfficeSupplies.html')
    theMenu.makeMenu('sub024','top0','Pet Supplies','ShopPetSupplies.html')
    theMenu.makeMenu('sub025','top0','Phones','ShopPhones.html')
    theMenu.makeMenu('sub026','top0','Real Estate','ShopRealEstate.html')
    theMenu.makeMenu('sub027','top0','Rental Cars','ShopRentalCars.html')
    theMenu.makeMenu('sub028','top0','Restaurants','ShopRestaurants.html')
    theMenu.makeMenu('sub029','top0','Shipping','ShopShipping.html')
    theMenu.makeMenu('sub030','top0','Shoes','ShopShoes.html')
    theMenu.makeMenu('sub031','top0','Sporting Goods','ShopSportingGoods.html')
    theMenu.makeMenu('sub032','top0','Theaters','ShopTheaters.html')
    theMenu.makeMenu('sub033','top0','Toys','ShopToys.html')
    theMenu.makeMenu('sub034','top0','Travel','ShopTravel.html')
    theMenu.makeMenu('sub035','top0','Video Games','ShopVideoGames.html')
	
theMenu.makeMenu('top1','','&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;BANK','')
    theMenu.makeMenu('sub100','top1','Banks','BankBanks.html')
    theMenu.makeMenu('sub101','top1','Credit Companies','BankCreditCompanies.html')
    theMenu.makeMenu('sub102','top1','Investing','BankInvesting.html')
    theMenu.makeMenu('sub103','top1','Loans','BankLoans.html')
    theMenu.makeMenu('sub104','top1','On-Line Trading','BankOnlineTrading.html')
    theMenu.makeMenu('sub105','top1','Stock Exchanges','BankStockExchanges.html')
    theMenu.makeMenu('sub106','top1','Tax Services','BankTaxServices.html')
	
theMenu.makeMenu('top2','','&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;READ','')
    theMenu.makeMenu('sub200','top2','Business','ReadBusiness.html')
    theMenu.makeMenu('sub201','top2','Cars','ReadCars.html')
    theMenu.makeMenu('sub202','top2','Celebrity','ReadCelebrity.html')
    theMenu.makeMenu('sub203','top2','Fashion','ReadFashion.html')
    theMenu.makeMenu('sub204','top2','Food','ReadFood.html')
    theMenu.makeMenu('sub205','top2','Health','ReadHealth.html')
    theMenu.makeMenu('sub206','top2','Home','ReadHome.html')
    theMenu.makeMenu('sub207','top2','Humor','ReadHumor.html')
    theMenu.makeMenu('sub208','top2','Men','ReadMen.html')
    theMenu.makeMenu('sub209','top2','Movies','ReadMovies.html')
    theMenu.makeMenu('sub210','top2','Music','ReadMusic.html')
    theMenu.makeMenu('sub211','top2','Newspapers','ReadNewspapers.html')
    theMenu.makeMenu('sub212','top2','Science','ReadScience.html')
    theMenu.makeMenu('sub213','top2','Sports','ReadSports.html')
    theMenu.makeMenu('sub214','top2','Technology','ReadTechnology.html')
    theMenu.makeMenu('sub215','top2','Television','ReadTelevision.html')
    theMenu.makeMenu('sub216','top2','Video Games','ReadVideoGames.html')
    theMenu.makeMenu('sub217','top2','Weather','ReadWeather.html')
    theMenu.makeMenu('sub218','top2','Weeklys','ReadWeeklys.html')
    theMenu.makeMenu('sub219','top2','Women','ReadWomen.html')
    
theMenu.makeMenu('top3','','&nbsp;&nbsp;&nbsp;&nbsp;LISTEN','')
	theMenu.makeMenu('sub300','top3','Audio Books','ListenAudioBooksOnDemand.html')
	theMenu.makeMenu('sub301','top3','Music On-Demand','ListenMusicOnDemand.html')
	theMenu.makeMenu('sub302','top3','Pod Casts','ListenPodCasts.html')
	theMenu.makeMenu('sub303','top3','Radio Stations','ListenRadioStations.html')
	theMenu.makeMenu('sub304','top3','Record Companies','ListenRecordCompanies.html')
	
theMenu.makeMenu('top4','','&nbsp;&nbsp;&nbsp;&nbsp;WATCH','')
	theMenu.makeMenu('sub400','top4','Movie Studios','WatchMotionPictureStudios.html')
	theMenu.makeMenu('sub401','top4','Movie Trailers','WatchMovieTrailers.html')
	theMenu.makeMenu('sub402','top4','Movies On-Demand','WatchMoviesOnDemand.html')
	theMenu.makeMenu('sub403','top4','Music Videos','WatchMusicVideos.html')
	theMenu.makeMenu('sub404','top4','Television Live','WatchTelevisionLive.html')
	theMenu.makeMenu('sub405','top4','Television On-Demand','WatchTelevisionOnDemand.html')
	theMenu.makeMenu('sub406','top4','Television Networks','WatchTelevisionNetworks.html')
	theMenu.makeMenu('sub407','top4','Video On-Demand','WatchVideoOnDemand.html')
	theMenu.makeMenu('sub408','top4','Video Pod Casts','WatchVideoPodCasts.html')

theMenu.makeMenu('top5','','&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;PLAY','')
    theMenu.makeMenu('sub500','top5','Game Companies','PlayGameCompanies.html')
    theMenu.makeMenu('sub501','top5','Game Consoles','PlayGameConsoles.html')
    theMenu.makeMenu('sub502','top5','Game Emulation','PlayGameEmulation.html')
    theMenu.makeMenu('sub503','top5','Games On-Demand','PlayGamesOnDemand.html')
    theMenu.makeMenu('sub504','top5','Massive Multiplayer','PlayMassiveMultiplayerGames.html')
    theMenu.makeMenu('sub505','top5','Multiplayer Games','PlayMultiplayerGames.html')
    
theMenu.makeMenu('top6','','&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;TALK','')
    theMenu.makeMenu('sub600','top6','eCards','TalkeCards.html')
    theMenu.makeMenu('sub601','top6','Instant Messengers','TalkInstantMessengers.html')
    theMenu.makeMenu('sub602','top6','Internet Chat','TalkInternetChat.html')
    theMenu.makeMenu('sub603','top6','Internet Telephones','TalkInternetTelephones.html')
    theMenu.makeMenu('sub604','top6','Internet Videophones','TalkInternetVideophones.html')
    theMenu.makeMenu('sub605','top6','On-line Meetings','TalkOnlineMeetings.html')
    theMenu.makeMenu('sub606','top6','Social Networks','TalkSocialNetworks.html')
    theMenu.makeMenu('sub607','top6','Web Mail','TalkWebMail.html')
	
theMenu.makeMenu('top7','','&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;EDIT','')
    theMenu.makeMenu('sub700','top7','Audio','EditAudioEditors.html')
    theMenu.makeMenu('sub701','top7','Code','EditCodeEditors.html')
    theMenu.makeMenu('sub702','top7','Disk','EditDiskUtilities.html')
    theMenu.makeMenu('sub703','top7','Picture','EditPictureEditors.html')
    theMenu.makeMenu('sub704','top7','Text','EditTextEditors.html')
    theMenu.makeMenu('sub705','top7','Video','EditVideoEditors.html')
    theMenu.makeMenu('sub706','top7','Virus Protection','EditVirusProtection.html')
    theMenu.makeMenu('sub707','top7','Web Browsers','EditWebBrowsers.html')

theMenu.makeMenu('top8','','&nbsp;&nbsp;&nbsp;&nbsp;SHARE','')
    theMenu.makeMenu('sub800','top8','Blogs','ShareBlogs.html')
    theMenu.makeMenu('sub801','top8','Files','ShareFileSharing.html')
    theMenu.makeMenu('sub802','top8','P2P','ShareP2PSharing.html')
    theMenu.makeMenu('sub803','top8','Photos','SharePhotos.html')
    theMenu.makeMenu('sub804','top8','Sounds','ShareSounds.html')
    theMenu.makeMenu('sub805','top8','Videos','ShareVideos.html')
    theMenu.makeMenu('sub806','top8','Web Hosting','ShareWebHosting.html')
    theMenu.makeMenu('sub807','top8','Web Indexing','ShareIndexDomain.html')

theMenu.makeMenu('top9','','&nbsp;&nbsp;&nbsp;SEARCH','')
    theMenu.makeMenu('sub900','top9','Audio','SearchAudio.html')
    theMenu.makeMenu('sub901','top9','Blogs','SearchBlogs.html')
    theMenu.makeMenu('sub902','top9','Books','SearchBooks.html')
    theMenu.makeMenu('sub903','top9','Cars','SearchCars.html')
    theMenu.makeMenu('sub904','top9','Classifieds','SearchClassifieds.html')
    theMenu.makeMenu('sub905','top9','Dictionary','SearchDictionary.html')
    theMenu.makeMenu('sub906','top9','Domain Names','SearchDomains.html')
    theMenu.makeMenu('sub907','top9','Encyclopedia','SearchEncyclopedia.html')
    theMenu.makeMenu('sub908','top9','Health','SearchHealth.html')
    theMenu.makeMenu('sub909','top9','Images','SearchImages.html')
    theMenu.makeMenu('sub910','top9','IP Address','SearchIPAddress.html')
    theMenu.makeMenu('sub911','top9','Jobs','SearchJobs.html')
    theMenu.makeMenu('sub912','top9','Local','SearchLocal.html')
    theMenu.makeMenu('sub913','top9','Lyrics','SearchLyrics.html')
    theMenu.makeMenu('sub914','top9','Maps','SearchMaps.html')
    theMenu.makeMenu('sub915','top9','News','SearchNews.html')
    theMenu.makeMenu('sub916','top9','People','SearchPeople.html')
    theMenu.makeMenu('sub917','top9','Public Records','SearchPublicRecords.html')
    theMenu.makeMenu('sub918','top9','Shopping','SearchShopping.html')
    theMenu.makeMenu('sub919','top9','Software','SearchSoftware.html')
    theMenu.makeMenu('sub920','top9','Translate','SearchTranslate.html')
    theMenu.makeMenu('sub921','top9','Travel','SearchTravel.html')
    theMenu.makeMenu('sub922','top9','Video','SearchVideo.html')
    theMenu.makeMenu('sub923','top9','Weather','SearchWeather.html')
    theMenu.makeMenu('sub924','top9','Web','SearchWeb.html')

//Leave this line - it constructs the menu
theMenu.construct()