function recImgs() {

	if(document.body.style.margin != 0) return;

	var marquee = document.createElement("marquee");
	marquee.onmouseover = function() { this.stop() };
	marquee.onmouseout = function() { this.start() };
	marquee.setAttribute("scrollamount", 3, 0);
	var recommended = document.getElementById("recommended");

	recommended.appendChild(marquee);
	marquee.appendChild(recommended.getElementsByTagName("ul")[0]);
	marquee.firstChild.style.visibility = "visible";

}

if(document.addEventListener){
	document.addEventListener("DOMContentLoaded", recImgs, false);
}
else{
	window.onload = recImgs;
}