		CurIndex = 0  ;
		var IntervlID  ;
		ChangeTime = 10 ; //In Seconds
	
		function ShowNext() {
			$("#accordion").accordion( "activate" , CurIndex) ;
			CurIndex++;
			if ( CurIndex >= theLength) CurIndex = 0 ; 
		}
		
		function StartThat () {
//			if (!IntervlID ) {
//				IntervlID = setInterval("ShowNext()", 1000 * ChangeTime ) ;
//			}
		}
		
		function StopThat () {
				clearInterval(IntervlID) ; 
				IntervlID = null; 
		}

		 $(document).ready(function() {
		 		$("#crazy_div").html($("#cont1").html()) ;
				theLength = $("#accordion").find("h3").length ; 
				ShowNext();

				$("#accordion").accordion({
				    event: "mouseover"
				});
				$('.ui-accordion').bind('accordionchange', function(event, ui) {
					Crazy = ("#crazy_div") ; 
					objID  = ui.newHeader.find ("a").attr("id");
					SourceID  = $("#cont" + objID) ;
					TargetContainer = $("#crazy_div") ;			 
					TargetContainer.fadeOut("200", function(){
															
						TargetContainer.html(SourceID.html()) ;
						TargetContainer.fadeIn("2000") ; 
						$("#ajax *").hover(function(){ StopThat();  })  ;
						$("#ajax *").mouseout(function(){ StartThat();  })  ; 
						$(".ui-accordion-header a").click (function(){ StopThat(); }) ; 
						$(".the_contents").hover (function(){ StopThat(); }) ; 
						$(".the_contents *").hover (function(){ StopThat(); }) ; 
					})  
				});
				
				StartThat();
						
			 
						
		});
	
		
