<div class="grid3column">
<?php if(has_post_thumbnail()): ?>
<a href="<?php the_permalink(); ?>" class="photo-hover"><?php the_post_thumbnail('portfolio-thumb'); ?></a>
<?php else: ?>
<?php if(get_post_meta($post->ID, 'pyre_video_embed_link', true)): ?>
<?php
$video = get_post_meta($post->ID, 'pyre_video_embed_link', true);
$pattern = "/height=\"[0-9]*\"/";
$video = preg_replace($pattern, "height='281'", $video);
$pattern = "/width=\"[0-9]*\"/";
$video = preg_replace($pattern, "width='500'", $video);
?>
<div class="video-border">
<?php echo $video; ?>
</div>
<?php endif; ?>
<?php endif; ?>
</div>
<div class="grid3columnbig lastcolumn"></div>