function checkDim() {
	var curWdt = $.viewportWidth();
	var curHgt = $.viewportHeight();
	var divWdt = $('#splashpicBD').width();
	var divHgt = $('#splashpicBD').height();

	if (curWdt < divWdt) {
		$('#splashpicBD').css('margin-left', '0px');
		$('#splashpicBD').css('left', '0px');
	}
	else {
		var ml = Math.round(divWdt / 2) * -1;
		$('#splashpicBD').css('margin-left', ml + 'px');
		$('#splashpicBD').css('left', '50%');
	}
	if (curHgt < divHgt) {
		$('#splashpicBD').css('margin-top', '0px');
		$('#splashpic').css('top', '0px');
	}
	else {
		var mt = Math.round(divHgt / 2) * -1;
		    mt -= 32;
                    //mt -= 64;
		$('#splashpicBD').css('margin-top', mt + 'px');
		$('#splashpicBD').css('top', '50%');
	}
}
$(document).ready(function() {
	checkDim();
	window.onresize = checkDim;
});

