			function resize(){
 				$(".splash img") 
    			.width($(window).width()) 
    			.height($(window).width() * .67); 

  				if($(".splash img").height() <= $(window).height()){	
    				$(".splash img")
      				.height($(window).height())
      				.width($(window).height() * 1.5);
  				}

			}

			$(document).ready(function(){ resize(); });
			$(window).resize(function(){ resize(); });