//
//
//
    var  menuItems = new Array();
            var  url = new Array();
            var  url = new Array();
           
           // init menu categories
            
             menuItems[0] = "Automobiles";
             url[0] = "automobiles.html";
             
             menuItems[1] = "Beauty";  
             url[1] = "beauty.html";
             
             menuItems[2] = "Education";
             url[2] = "education.html";
             
             menuItems[3] = "Electronics";
             url[3] = "electronics.html";
             
             menuItems[4] = "Exercise";
             url[4] = "exercise.html ";
             
             menuItems[5] = "Finance";
             url[5] = "finance.html";
             
             menuItems[6] = "Food";
             url[6] = "food.html";
             
             menuItems[7] = "Health";
             url[7] = "health.html";
             
             menuItems[8] = "Hobbies";
             url[8] = "hobbies.html";
               
             menuItems[9] = "Home Improvement";
             url[9] = "homeimprovement.html";
			 
			 menuItems[10] = "Industrial";
             url[10] = "industrial.html";
               
             menuItems[11] = "Internet";
             url[11] = "internet.html";
               
             menuItems[12] = "Office";
             url[12] = "office.html";
               
             menuItems[13] = "Personal Care";
             url[13] = "personalcare.html";
               
             menuItems[14] = "Pets";
             url[14] = "pets.html";
               
             menuItems[15] = "Sports";
             url[15] = "sports.html";
               
             menuItems[16] = "Technology";
             url[16] = "technology.html";
               
             menuItems[17] = "Telecom";
             url[17] = "telecom.html";
               
             menuItems[18] = "Travel";
             url[18] = "travel.html";
			 
			 menuItems[19] = "Others";
             url[19] = "others.html";
             
        //     
        // add rows to menu table
        // param:  menuTable - html table element name
        //
        function categoryMenu(menuTable) {
         
          for(var i=0 ; i < menuItems.length ; i++) {
            var row = menuTable.insertRow();
            var cell = row.insertCell();
            cell.innerHTML = "<SPAN class='menuItem'><b><A href='" + url[i] + "' target='_blank'>"+ menuItems[i] + 
                             "</A></b></SPAN>" ;
          }
          
          
        }
