var currImgWidth;
var currImgHeight;

$(document).ready(
	function(){
		currImgWidth = Number($("#fullImg").attr("width"));
		currImgHeight = Number($("#fullImg").attr("height"));
		sizeFullImg();
		$(window).resize(function() {
			sizeFullImg();
		});
	}
);

function sizeFullImg(){
	var targWidth = $("#container").innerWidth();
	var targHeight = $("#container").innerHeight() - 153;
	
	var newWH = stretchDimOver(currImgWidth, currImgHeight, targWidth, targHeight);
	
	var left = Math.round((targWidth - newWH["width"])/2);
	var top = Math.round((targHeight - newWH["height"])/2);
	
	$("#fullImg").css({
		"width" : newWH["width"],
		"height" : newWH["height"],
		"left" : left,
		"top" : top
	});
	
	$("#content").css({
		"height" : targHeight
	});
	
	$("#logo").css({
		"bottom" : 'auto',
		"top" : targHeight + 24
	});
	
	$("#copyRt").css({
		"width" : Math.max(144, targWidth - 287 - 719)
	});
}