$(document).ready(function(){
	// Hide the langauge items
	$("#country-items").hide();
	
	// Toggle language items on click
	$("a#country-select").click(function(){	
		$("#country-items").slideToggle(100);
		return false;
	});	
	
	// Extend all the blackboxes to even height
	/*var heights = $(".blackbox .container").map(function() { return $(this).height(); } ).get();
	var maxHeight = heights.sort(function(a, b) { return a - b; }).reverse()[0];
	$(".blackbox .container").height(maxHeight);*/
});

function resizeWindow(height) {
	$("#presentation").animate({ 
		height: height
	}, 900 );
}
