function changethis(e){
	var hotblock = document.getElementById("hotlink");
	var newblock = document.getElementById("news" + e);
	var hotphoto = document.getElementById("hotphoto");
	
	if(e){
		hotblock.innerHTML = "<span>" + newblock.getAttribute("subject") + "</span>" + newblock.getAttribute("text")
		hotphoto.style.backgroundImage = "url(" + newblock.getAttribute("photo") + ")"
		hotblock.href=newblock.getAttribute("href")
	}
}
