function onResize() {
	$(window).resize(function() {
		if ( $("#gallery-image-1") ) {
			var firstMarginLeft = (($(window).width() - 950) / 2) + 155;
			$("#gallery-image-1").css("margin-left", firstMarginLeft);
		}
	});
}
