$(document).ready(function() {
	$(".regionalCountryList").each(function(){
		$(this).find("li:first").css("border-top","none");
		$(this).find("li:last").css("border-bottom","none");
	});
	
	$(".countryLanguage").each(function(){
		$(this).find("span:first").css("margin-left","0");
	});
	$(".country").each(function(){
		$(this).find("a:last").css("margin-right","15px");
	})
	
	
	adjustRegionalBoxHeight();

	
});

function adjustRegionalBoxHeight(){
	boxRegionHeightMax = 0;
	if( boxRegionHeightMax< $("#rightContent .boxLeftColumn").height() ){
		boxRegionHeightMax = $("#rightContent .boxLeftColumn").height();
	}
	if( boxRegionHeightMax< $("#rightContent .boxRightColumn").height() ){
		boxRegionHeightMax = $("#rightContent .boxRightColumn").height();
	}
	if($("#rightContent .boxLeftColumn")){
		$("#rightContent .boxLeftColumn").css("height",boxRegionHeightMax+"px");	
	}
	
	if($("#rightContent .boxRightColumn")){
		$("#rightContent .boxRightColumn").css("height",boxRegionHeightMax+"px");
	}
	
}


