function reSize() {
	var topPhoto;
	var topVideo;
	$('img', '#tImage').jScale(
									{w:'170px'},
									function() {
										if ( $('img', '.sidePhoto').height() < $('.sidePhoto').height() ) {
											topPhoto = Math.floor(( $('.sidePhoto').height() - $('img', '.sidePhoto').height() ) / 2);
										} else {
											topPhoto = 0;
										}
										if ( $('img', '.sideVideo').height() < $('.sideVideo').height() ) {
											topVideo = Math.floor(( $('.sideVideo').height() - $('img', '.sideVideo').height() ) / 2);
										} else {
											topVideo = 0;
										}
										$('img', '.sidePhoto').css({'position':'relative', 'top':topPhoto});
										$('img', '.sideVideo').css({'position':'relative', 'top':topVideo});
									}
								);
}
