/**********************************************************

    D O N 'T   M O D I F Y   T H I S   F I L E  !!!

**********************************************************/

$(".submitCountry").hide();
function showEvent(id) {
	$.ajax({
		type: "POST",
		url: "/scripts/include/ajax/",
		data: {
			"app" : "events",
			"appId" : id,
			"countryId" : $("#eventsPortletSelect" + id).val()
		},
		success: function(content){
			$("#eventsPortlet" + id + " .nextEvent").html(content);
		}
	});
}

