function makeitso() {
 //make an array of all the divs on this page.
 MoveUs = document.getElementsByTagName("div"); 
 
 //loop all the divs.
 for( var i = 0; i < MoveUs.length; i++ ) 
 { 
 
 //only if it has the class 'movethis'
 if (MoveUs[i].className=="movethis") {
 ThisItem = MoveUs[i]
 
	//get the html from inside this div
	temp = ThisItem.innerHTML;
	

	
	//empty the old div
	ThisItem.innerHTML = "";

	//append it to the end of the target div, found in the rel attribute
	document.getElementById(ThisItem.title).innerHTML = document.getElementById(ThisItem.title).innerHTML+temp;
	}
 } 

}