	<!--
	function swapRotator(n){
		if (document.all){
			rot = document.all['nowshowing'];
			swap = document.all['rotator_' + n];
			rot.innerHTML = swap.innerHTML;
		}
		else if(document.getElementById){
			rot = document.getElementById('nowshowing');
			swap = document.getElementById('rotator_' + n);
			rot.innerHTML = swap.innerHTML;
		}
		else {
			document.location = 'index.cfm?r=' + n;
		}
	}
	//-->