// change divs doc:

function changeDivs() {
	var offerDiv = document.getElementById('vip')
	offerDiv.style.top = '0px';
	//flashDiv.style.top = '345px';
	settingPos = setInterval(reposition, 10)
}
var settingPos
var inc = 55; // Increment amount -- also changes speed
var final = 345;
var current = 0;
function reposition() {
	var flashDiv = document.getElementById('flashDiv')
	inc = inc-(inc*0.136);
	
	if (current<final) {
		current = current+inc;
		flashDiv.style.top = current+'px'
	} else {
		flashDiv.style.top = final+'px'
		clearInterval(settingPos)
	}
}