		
					onerror = stopError;
					function stopError () {
					  return true;
					}
					function RotationStart(position) {
						var duration = 4000;
						if(!position || position > 3) position = 1;
						if(position == 1) {
					
							Effect.Fade('News3', {duration: 1});
					
							hides = window.setTimeout( "HideMe('false', 'true', 'true')", 1000);
					
							document.getElementById('RotationQueue1').style.backgroundColor = '#f60';
							document.getElementById('RotationQueue2').style.backgroundColor = '#c0c0c0';
							document.getElementById('RotationQueue3').style.backgroundColor = '#c0c0c0';
					
							Effect.Appear('News1', {duration: 1});
							interval = window.setTimeout("RotationStart(2)", duration );
						}
						if(position == 2) {
					
							Effect.Fade('News1', {duration: 1});
					
							hides = window.setTimeout( "HideMe('true', 'false', 'true')", 1000);
					
							document.getElementById('RotationQueue2').style.backgroundColor = '#f60';
							document.getElementById('RotationQueue1').style.backgroundColor = '#c0c0c0';
							document.getElementById('RotationQueue3').style.backgroundColor = '#c0c0c0';
					
							Effect.Appear('News2', {duration: 1});
							interval = window.setTimeout("RotationStart(3)", duration );
						}
						if(position == 3) {
					
							Effect.Fade('News2', {duration: 1});
					
							hides = window.setTimeout( "HideMe('true', 'true', 'false')", 1000);
					
							document.getElementById('RotationQueue3').style.backgroundColor = '#f60';
							document.getElementById('RotationQueue1').style.backgroundColor = '#c0c0c0';
							document.getElementById('RotationQueue2').style.backgroundColor = '#c0c0c0';
					
							Effect.Appear('News3', {duration: 1});
							interval = window.setTimeout("RotationStart(1)", duration );
						}
					}
					function RotationStop() {
						window.clearTimeout(interval);
						window.clearTimeout(hides);
						window.clearTimeout(start);
					}
					function Display(id) {
						if(id == 1) {
							document.getElementById('RotationQueue1').style.backgroundColor = '#f60';
							document.getElementById('RotationQueue2').style.backgroundColor = '#c0c0c0';
							document.getElementById('RotationQueue3').style.backgroundColor = '#c0c0c0';
					
							document.getElementById('News3').style.display = 'none';
							document.getElementById('News2').style.display = 'none';
							document.getElementById('News1').style.display = 'block';
						}
						if(id == 2) {
							document.getElementById('RotationQueue2').style.backgroundColor = '#f60';
							document.getElementById('RotationQueue1').style.backgroundColor = '#c0c0c0';
							document.getElementById('RotationQueue3').style.backgroundColor = '#c0c0c0';
					
							document.getElementById('News3').style.display = 'none';
							document.getElementById('News1').style.display = 'none';
							document.getElementById('News2').style.display = 'block';
						}
						if(id == 3) {
							document.getElementById('RotationQueue3').style.backgroundColor = '#f60';
							document.getElementById('RotationQueue1').style.backgroundColor = '#c0c0c0';
							document.getElementById('RotationQueue2').style.backgroundColor = '#c0c0c0';
					
							document.getElementById('News2').style.display = 'none';
							document.getElementById('News1').style.display = 'none';
							document.getElementById('News3').style.display = 'block';
						}
					}
					function HideMe(n1, n2, n3) {
						if(n1 == 'true') document.getElementById('News1').style.display = 'none';
						if(n2 == 'true') document.getElementById('News2').style.display = 'none';
						if(n3 == 'true') document.getElementById('News3').style.display = 'none';
					}
					function test(id) {
						if(id == 1) {
							start = window.setTimeout('RotationStart(2)', 2000);
						}
						if(id == 2) {
							start = window.setTimeout('RotationStart(3)', 2000);
						}
						if(id == 3) {
							start = window.setTimeout('RotationStart(1)', 2000);
						}
					}
				
