So I solved my own problem. Here's the code:
$('.fancybox').each(function() {
var offset = $(this).offset();
var fbPosistion = offset.top - 200;
$(this).fancybox({
'type' : 'iframe',
'onComplete' : function(){
var fbCssText = $('#fancybox-wrap').css('cssText');
fbCssText = fbCssText + '; top: ' + fbPosistion + 'px !important;'
$('#fancybox-wrap').css('cssText', fbCssText);
}
});
});
Hopefully this helps somebody else.