Figured out my own problem. Had to use wp_get_attachment_url:
<?php if(get_post_meta($post->ID, "portfolio_image", true)) { ?>
<a href="<?php $portfolio_image = get_post_meta($post->ID, 'portfolio_image', true);
echo wp_get_attachment_url($portfolio_image); ?>" rel="lightbox[<?php the_ID(); ?>]"><img src="<?php $portfolio_thumbnail = get_post_meta($post->ID, 'portfolio_thumbnail', true);
echo wp_get_attachment_url($portfolio_thumbnail); ?>" title="<?php the_title(); ?>" alt="<?php the_title(); ?>"></a>
<?php } ?>
Took all day, but I hope this may help someone else!