//generic pricing
g_life = 24.95;
g_life_reduced = 10.00;
g_ptbook = 28.95;
g_jsbook = 26.95;
g_ptbook_reduced = 28.95;
g_jsbook_reduced = 26.95;


//ship rates
pt_usa =   3.00;   pt_can = 7.00;   pt_intl = 13.50;
js_usa =   3.00;   js_can = 5.50;   js_intl = 11.00;
both_usa = 4.00; both_can = 8.50; both_intl = 17.50;

shipdest = "nowhere";






// returns the amount in the .99 format (thanks irt.org!)
function cent(amount)
{
   amount -= 0;
   return (amount == Math.floor(amount)) ? amount + '.00' : (  (amount*10 == Math.floor(amount*10)) ? amount + '0' : amount);
}
