// reposition the sun
function repositionSun() {
	var edgePos = document.getElementById('logo-container').offsetLeft;
	var sunBgPos = edgePos-100;
	document.getElementById('sun-bg-container').style.backgroundPosition = sunBgPos+"px 0px";
}

window.onresize = function() {
	repositionSun();
};
