$(document).ready(function() {

  //Content width
  checkSize();
  $(window).bind("resize", function(){ checkSize(); });

	// Country page layer handlers
  
	$("#overlayContainer").hide();
	$("#overlayFrame").html('<iframe id="overlayiFrame" frameborder="0" scrolling="no" src="/GlobalGateway/Content/Pages/gateway_js.aspx" allowtransparency="false" style="margin:0px auto; width:959px; height:590px;"></iframe>');
  	$(".world").click(function(){
			$("#overlayContainer").slideToggle("slow");		
			$(this).toggleClass("active"); return false;
		});
});

function checkSize() {
  if ($(window).width()<900) {
	$('body').addClass('window800');
  }
  else {
	$('body').removeClass('window800');
  }
}
