I created this code to resize photos/images to fit the screen, considering the space available for the nav bar.
The script fires on image load and on navigation clic
Here is how I do it:
jQuery(document).ready(function($) { $('.wp-post-image').height($(window).height()); });