		$(document).ready(
			function(){
				$('#Quotes').innerfade({
					animationtype: 'fade',
					speed: 'slow',
					timeout: 4000,
					type: 'sequence'
				});
				
				$('#ImageRotator').innerfade({
					animationtype: 'fade',
					speed: 'slow',
					timeout: 4000,
					type: 'sequence',
					runningclass: 'Rotator'
				});
			}
		);
		
		function getFlashMovie(movieName) {
			var isIE = navigator.appName.indexOf("Microsoft") != -1;
			return (isIE) ? window[movieName] : document[movieName];
		 }
 
		function ShowTV() {
			document.getElementById('TV').style.display = 'block'
		}
		
		function CloseTV(){
			document.getElementById('TV').style.display = 'none'
		}
