﻿jQuery.noConflict();
jQuery(document).ready(function(){
  var price = jQuery("#detail_price").html();
  price = jQuery.trim(price);
  price = price.substr(1);
  price = price.replace(/,/g,"");
  price = parseInt(price);
  if(price!=null){
          jQuery.get("/inc/getExchangeRate.php", { currency_from: 'USD', currency_to: 'JPY', price: price },
                        function(data){
                             jQuery("#usd_price").html(data);
                        })
  }
});
