// CONTACT US DROP DOWN - Initialization script
$(document).ready(function() {
	$("body select").msDropDown();
		$.ajax({
			type: "GET",
			url: "/common/xml/vpscl.xml?"+new Date().getTime(),
			dataType: "xml",
			complete: function(data) {
				var json = $.xmlToJSON(data.responseXML);
				json.countries[0].country.SortByAttribute("name");
				for(var i = 0; i < json.countries[0].country.length; i++) {
					addOption(document.getElementById("country"), json.countries[0].country[i].name, json.countries[0].country[i].name);
			}
			document.getElementById("country").refresh();
		}
	});
});