Event.observe(window, "load", function(event) {

	if ($("shipment-countries-small")) {

		$("shipment-countries-small").hide();
		$("shipment-countries-small").setStyle({visibility: "visible"});
		
		$("shipment-countries-small").appear({duration: 1});
	}
	
	if ($("customer")) {

		$("customer").hide();
		$("customer").setStyle({visibility: "visible"});
		
		$("customer").appear({duration: 1});
	}
	
});