$(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:575px;"></iframe>');
		//$("#overlayFrame").html('<iframe id="overlayiFrame" frameborder="0" scrolling="no" src="/GlobalGateway/Documents/gateway_js.html" allowtransparency="false" style="margin:0px auto; width:959px; height:595px;"></iframe>');

  	$(".world").click(function(){
			$("#overlayContainer").slideToggle("slow");
			if ($(".alt2").is(':visible'))
			{
				$(".alt2").hide();
			} else {
				$(".alt2").show(1000);
			}
			$(this).toggleClass("active"); return false;
		});
});

function checkSize() {
  if ($(window).width()<900) {
	$('body').addClass('window800');
  }
  else {
	$('body').removeClass('window800');
  }
}
