$(function(){
$("div.currency>span").text("reading...");
$.ajax({
url : "/js/currency.php",
type : "get",
timeout : 40000,
success : function(data){
$("div.currency>span").text(data);
},
error : function(){
$("div.currency>span").text(" read error ");
}
});
});

