$(document).ready(function() {  
	var iTotalTabs = $('#tabsContainer > div').size();
	var iEmptyTabs = 0;
	$('#tabsContainer > div').each(function(i) {
		if (this.getElementsByTagName("li").length == 0) {
			iEmptyTabs++;
			$("#tabsContainer > ul[@class='tabs-nav'] > li > a[@href='#" + this.id +"']" ).parent().remove();
			$("#" + this.id).remove();
		}
	});
	if (iTotalTabs != iEmptyTabs) {
		$('#tabsContainer').tabs({fxFade:true, fxAutoHeight:true, fxSlide:true, event: 'mouseover', fxSpeed: 'medium' }).show(); 	
	} else {
		$('#tabsContainer').hide();
	}

	// World Submit Button
	$("#textInputButton").attr("href","javascript:changeCountry(document.countryForm.cSel);");

	//$("#textInputButton").click( function() {
	//	changeCountry(document.countryForm.cSel);
	//});
});