function rollOver(id){
	var size1 = document.body.clientWidth; 
	var mid1 = document.body.clientWidth/2;
	document.getElementById(id).style.top=136;
	if(size1 >= 835){
		document.getElementById(id).style.left=mid1-270;
	}
	else if(size1 < 835){
		document.getElementById(id).style.left=148;
	}
}

function rollOut(id){
	
	document.getElementById(id).style.top=-400;
}

function rollOver2(id){
	var size2 = document.body.clientWidth;
	var mid2 = document.body.clientWidth/2;
	document.getElementById(id).style.top=136;
	if(size2 >= 835){
		document.getElementById(id).style.left=mid2+274;
	}
	if(size2 < 835){
		document.getElementById(id).style.left=692;
	}
	
}

function rollOut2(id){
	
	document.getElementById(id).style.top=-400;
}


function setCoords(id){
	var mid = document.body.clientWidth/2;
	document.getElementById(id).style.left=mid-400;
	var size3 = document.body.clientWidth;
	
}
