var qs_options = [["", "quick search index"], ["/transportation/air_airports/", "Airports"], ["/angkor/", "Angkor Wat tourist guide"], ["/shopping/antiques/", "Antiques"], ["/culture/art/", "Art & literature"], ["/battambang/", "Battambang tourist guide"], ["/transportation/taxis_buses/", "Buses"], ["/business-services/", "Business services"], ["/transportation/road_rental/", "Car hire"], ["/travel_tips/costs/", "Costs"], ["/about/", "Country guide"], ["/culture/", "Culture"], ["/culture/music_dance/", "Dance"], ["/transportation/road_rental/", "Driving"], ["/shopping/electronics/", "Electronics"], ["/essential_contacts/cambodia/", "Essential services"], ["/culture/etiquette/", "Etiquette"], ["/phnom-penh-for-expats/", "Expats in Phnom Penh"], ["/shopping/fashion/", "Fashion"], ["/transportation/ferries/", "Ferries"], ["/culture/food/", "Food"], ["/getting-around-phnom-pehn/", "Getting around Phnom Penh"], ["/shopping/handicrafts/", "Handicrafts"], ["/travel_tips/health/", "Health"], ["/history/", "History"], ["/kampong_thom/", "Kampong Thom tourist guide"], ["/kampot_kep/", "Kampot & Kep tourist guide"], ["/phnom-penh-for-kids/", "Kids activities"], ["/koh_kong/", "Koh Kong tourist guide"], ["/culture/khmer_rouge/", "Khmer Rouge"], ["/kratie/", "Kratie tourist guide"], ["/travel_tips/living_here/", "Living in Cambodia"], ["/category/map/", "Map"], ["/culture/music_dance/", "Music & dance"], ["/national-silk-centre/", "National silk centre"], ["/phnom_penh/", "Phnom Penh tourist guide"], ["/phnom-penh-for-kids/", "Phnom Penh with kids"], ["/pictures/", "Pictures"], ["/poipet/", "Poipet tourist guide"], ["/culture/religion/", "Religion"], ["/food-and-restaurants-in-siem-reap/", "Restaurants in Sieam Reap"], ["/travel_tips/safety/", "Safety"], ["/shopping/", "Shopping"], ["/siem_reap/", "Siem Rip tourist guide"], ["/sihanoukville/", "Sihanoukville tourist guide"], ["/culture/speak_khmer/", "Speak Khmer"], ["/transportation/taxis_buses/", "Taxis"], ["/transportation/", "Transportation"], ["/facts/", "Travel facts"], ["/highlights/", "Travel highlights"], ["/travel_tips/", "Travel tips"], ["/travel_tips/visas/", "Visas"], ["/travel_tips/weather/", "Weather"]]

var select_tag = document.getElementById('qsselect');
for (i in qs_options) {
	var option_tag = document.createElement('option');
	option_tag.setAttribute('value', qs_options[i][0]);
	option_tag.innerHTML = qs_options[i][1];
	select_tag.appendChild(option_tag);
}



/* included here to avoid adding another file. Uses OneStop.insert_cool_thing_link in shared.js */ 
$(function() {
		var ctl = [
			["/t/1stopcambodia/images/cool/cambodia_angkor.jpg", "/transportation/road_rental"],
			["/t/1stopcambodia/images/cool/cambodia_kampot.jpg", "/kampot_kep"],
			["/t/1stopcambodia/images/cool/cambodia_lake.jpg", "/phnom_penh/activities"],
			["/t/1stopcambodia/images/cool/cambodia_museum.jpg", "/phnom_penh/museums/"]
		]
		
		OneStop.insert_cool_thing_link(ctl, $("div#cool-thing"))	
})




