// JavaScript Document


jQuery(document).ready(function() { 
				
		  var $iframe = $("iframe");
		  
		  var i = 0;
		  $iframe.load(function () {
				if(i == 1) $(".gCheckout div").show();	
				i++; 
			 });
} );