
function setResolutionClass(){
	if ((screen.width >= 1400))
	{
	 document.getElementById("mainframe").setAttribute("class","resolution_1400");
	}
	else if ((screen.width >= 1280))
	{
		 document.getElementById("mainframe").setAttribute("class","resolution_1280");
	}
}
