function positionElements () {
	var windowW =  page.winW();
	var windowH =  page.winH();
	var centerX = Math.round(windowW/2, 0);
	var centerY = Math.round(windowH/2, 0);

 	var sunsetback = getLyr('sunsetback');
	var sunsetbackX = (centerX - 350);
	var sunsetbackY = (centerY - 222);
	var sunsetbackW = (700);
	var sunsetbackH = (444);
		with (sunsetback) {
			x(sunsetbackX);
			y(sunsetbackY);
			w(sunsetbackW);
			h(sunsetbackH);
	}

	var sunsetlogo = getLyr('sunsetlogo');
	var sunsetlogoX = (sunsetbackX);
	var sunsetlogoY = (sunsetbackY);
	var sunsetlogoW = (sunsetbackW);
	var sunsetlogoH = (sunsetbackH);
		with (sunsetlogo) {
			x(sunsetlogoX);
			y(sunsetlogoY);
			w(sunsetlogoW);
			h(sunsetlogoH);
	}

	var sunsetfrontW = (385);
	var sunsetfrontH = (335);
	var sunsetfrontX = (sunsetbackX + 260);
	var sunsetfrontY = (sunsetbackY + 20);
	var sunsetfront = getLyr('sunsetfront');
		with (sunsetfront) {
			x(sunsetfrontX);
			y(sunsetfrontY);
			w(sunsetfrontW);
			h(sunsetfrontH);
	}

	var textdiv = getLyr('textdiv');
		with (textdiv) {
			x(sunsetfrontX +32);
			y(sunsetfrontY +25);
			w(sunsetfrontW -15);
			h(sunsetfrontH -35);
	}

 	var birdbaseX = (sunsetbackX + 100);
	var birdbaseY = (sunsetbackY + 320);


	//Contact

	var bird1 = getLyr('dbird1');
		with (bird1) {
			x(sunsetbackX +31);
			y(sunsetbackY +243);
	}
	//Contact text
	/*
	var text1 = getLyr('text1');
		with (text1) {
			x(sunsetbackX +26);
			y(sunsetbackY +228);
	}

	*/
	//About
	var bird2 = getLyr('dbird2');
		with (bird2) {
			x(sunsetbackX +165);
			y(sunsetbackY +125);
	}
	//About text
	var text2 = getLyr('text2');
		with (text2) {
			x(sunsetbackX +134);
			y(sunsetbackY +113);
	}

	//Artists
	var bird3 = getLyr('dbird3');
		with (bird3) {
			x(sunsetbackX +56);
			y(sunsetbackY +202);
	}
	//Artists Text
	var text3 = getLyr('text3');
		with (text3) {
			x(sunsetbackX +105);
			y(sunsetbackY +200);
	}

	//Blank
	/*
	var bird4 = getLyr('dbird4');
		with (bird4) {
			x(sunsetbackX +165);
			y(sunsetbackY +210);
	}
	//Blank Text
	var text4 = getLyr('text4');
		with (text4) {
			x(sunsetbackX +165);
			y(sunsetbackY +210);
	}
	*/

	//Events

	var bird5 = getLyr('dbird5');
		with (bird5) {
			x(sunsetbackX +170);
			y(sunsetbackY +238);
	}

	//Events Text
	var text5 = getLyr('text5');
		with (text5) {
			x(sunsetbackX +210);
			y(sunsetbackY +237);
	}

	//Home

	var bird6 = getLyr('dbird6');
		with (bird6) {
			x(sunsetbackX +210);
			y(sunsetbackY +310);
	}
	//Home text
	var text6 = getLyr('text6');
		with (text6) {
			x(sunsetbackX +181);
			y(sunsetbackY +335);
	}

}