// JavaScript Document
var projectlist = [];
var projectcategory;
var projectitem;
// residential
projectcategory = {};
projectcategory.categoryname = "residential";
projectcategory.foldername = "residential";

projectitem = [
			   {title:"TS Residence, Bandung", pagelink:"ts_residence.php", isactive:true},
			   //{title:"FXH Residence, Jakarta ", pagelink:"fxh_residence.php", isactive:false},
			   {title:"House 6, Jakarta", pagelink:"house_6.php", isactive:true},
			   {title:"House 11, Jakarta", pagelink:"house_11.php", isactive:true},
			   //{title:"JH Residence, Bandung ", pagelink:"jh_residence.php", isactive:true},
			   {title:"House + Clinic, Bandung", pagelink:"house_clinic.php", isactive:true}
			   
			   ];

projectcategory.itemlist = projectitem;
projectlist.push(projectcategory);

// commercial
projectcategory = {};
projectcategory.categoryname = "commercial & hospitality";
projectcategory.foldername = "commercial";

projectitem = [
			   {title:"firli illuminati, Jakarta", pagelink:"firli_illuminati.php", isactive:true},
			   {title:"Hana flower boutique, Jakarta", pagelink:"hana_flower_boutique.php", isactive:true},
			   {title:"flowerShop, Bandung", pagelink:"flower_shop.php", isactive:true},
			   {title:"<br/>Pour Le Mieux, Jakarta", pagelink:"por_le_mieux.php", isactive:true},
			   {title:"OSSO, Bandung", pagelink:"osso.php", isactive:true},
			   {title:"Pulau Indah, Bandung", pagelink:"pulau_indah.php", isactive:true},
			   //{title:"Arar Restaurant, Bandung ", pagelink:"arar_restaurant.php", isactive:true},
			   //{title:"Javana Bistro, Bandung ", pagelink:"javana_bistro.php", isactive:true},
			   {title:"Hotel K, Bandung", pagelink:"hotel_k.php", isactive:true}
			   ];

projectcategory.itemlist = projectitem;
projectlist.push(projectcategory);


// arts and leisure
projectcategory = {};
projectcategory.categoryname = "institutional";
projectcategory.foldername = "arts_and_leisure";

projectitem = [
			   {title:"Arts & Cultural Center, Magelang", pagelink:"art_and_cultural_center_magelang.php", isactive:true},
			   {title:"LCC School, Bandung", pagelink:"lcc_school.php", isactive:true}
			   ];

projectcategory.itemlist = projectitem;
projectlist.push(projectcategory);

// master planning
projectcategory = {};
projectcategory.categoryname = "master planning";
projectcategory.foldername = "master_planning";

projectitem = [
			   //{title:"Green Pasteur Cul-de-sac, Bandung", pagelink:"green_pasteur_culdesac.php", isactive:true},
			   {title:"MR 150 housing, Bale endah, West Java", pagelink:"mr_150_housing.php", isactive:true},
			   {title:"MA 230 housing, Bale endah, West Java", pagelink:"ma_230_housing.php", isactive:true},
			   //{title:"Setiabudi Court Townhouses, Bandung", pagelink:"setiabudi_court_townhouse.php", isactive:true},
			   {title:"<br/>AREA 31, Bale endah, West Java", pagelink:"area_31.php", isactive:true},
			   {title:"One hectare Garden, Bandung", pagelink:"one_hectare_garden.php", isactive:true}
			   ];

projectcategory.itemlist = projectitem;
projectlist.push(projectcategory);

// competition
projectcategory = {};
projectcategory.categoryname = "competition";
projectcategory.foldername = "competition";

projectitem = [
			   {title:"Museum of Polish History, Warsaw", pagelink:"museum_of_polish_history.php", isactive:true},
			   {title:"Vocational School, Univ. Indonesia, Jakarta", pagelink:"vocational_school.php", isactive:true},
			   {title:"<br/>Mayan Jewel, Mexico", pagelink:"mayan_jewel.php", isactive:true},
			   {title:"Orbital Kinship, London", pagelink:"orbital_kinship.php", isactive:true},
			   {title:"ITB Campus Masterplan, Bandung", pagelink:"itb_masterplan.php", isactive:true},
			   {title:"<br/>Center for Infrastructure and Built Environment, ITB Campus, Bandung", pagelink:"itb_cibe.php", isactive:true},
			   {title:"<br/>MKAA Revitalization proposal, Bandung", pagelink:"mkaa.php", isactive:true}
			   ];

projectcategory.itemlist = projectitem;
projectlist.push(projectcategory);

var _contentid = "pagecontent";
createprojectlink(projectlist);
