Guys, i used 2 Jquery's in product_details, because i'm dev a shipping plugin and i had the same error then you.
So i changed the facebox javascript, to execute on document.ready, and it works!
The error before i've got before:
vmprices.js
faceboxHtml is not defined in facebox.js in line 56
$.facebox.settings.faceboxHtml = faceboxHtml;
The fix:
facebox.js
jQuery(document).ready(function() {
//[..facebox content..]
});
[attachment cleanup by admin]