I have list of pure functions (All functions are InterpolatingFunction) i.e
{{a, b}, {c, d}, {e, f}, ...}
and I would like to end up with
{ (a[#]/b[#])&, (c[#]/d[#])&,(e[#]/f[#])&,...}
the closest I have got is to do
(Divide @@ Through[#[x]]) & /@ {{a, b}, {c, d}, {e, f}}
{a[x]/b[x], c[x]/d[x], e[x]/f[x]}
but these are not pure functions.

({x, y} \[Function] x[#]/y[#] &) @@@ {{a, b}, {c, d}, {e, f}}– Mr.Wizard Oct 21 '14 at 17:23\[Function]before! I added an image to the answer so everyone can see how it looks there. – C. E. Oct 21 '14 at 17:34