var width = window.document.body.clientWidth;
if (width < 960) {
	chooseStyle('Narrow', 60);
} else if (width >= 1240) {
	chooseStyle('Wide', 60);
} else {
	chooseStyle('Default', 60);
} 