<!--colorbox -->
<script src="//ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.2.min.js" type="text/javascript"></script>
<link rel="stylesheet" href="/css/colorbox.css" />
<script src='/scripts/colorbox.js' type="text/javascript"></script>
<script>
$(document).bind('cbox_complete', function(){
var cboxTitleHeight = $('#cboxTitle').height();
var cboxContentHeight = $('#cboxContent').height();
var cboxWrapperHeight = $('#cboxWrapper').height();
var colorboxHeight = $('#colorbox').height();
var cboxPhotoHeight = $('.cboxPhoto').height();
$('#cboxMiddleLeft, #cboxMiddleRight, #cboxContent').css('height', (cboxContentHeight + cboxTitleHeight) + 'px');
$('#cboxWrapper').css('height', (cboxWrapperHeight + cboxTitleHeight) + 'px');
$('#colorbox').css('height', (colorboxHeight + cboxTitleHeight) + 'px' );
$('#cboxLoadedContent').css('height', (cboxTitleHeight + cboxPhotoHeight) + 'px');
});
</script>