$(document).ready(function(){
			
		var active_anim; 
		var next_anim;
       	
		 opening_anim();   

		 
		 function opening_anim () {
			$('#main_nav').delay(800).fadeIn('slow', function() {
        	// Animation complete
     		});  
            $('#main_content').delay(1000).fadeIn('slow', function() {
        	// Animation complete
     		});

           
                              
			
			move_anim(0);   
			$(document).everyTime(7000,function(i) {
				next_anim = active_anim +1;
				if (next_anim > 2) {next_anim = 0 }
				move_anim(next_anim);	
			});
		 } 
		 function timer_test() {  
			   alert("it worked") 
			}
		 function move_anim(anim_num) {
			       
			 switch(active_anim) {
				case 0:
					$('#anim_1').fadeOut('slow', function() {
        				// Animation complete      
     				 });
					
					break;
				case 1:
					$('#anim_2').fadeOut('slow', function() {
  
     				 });

					break;
				case 2:
					$('#anim_3').fadeOut('slow', function() {
						
     				 });
					break;
				default:
			 }
			 switch(anim_num) {
				case 0:
					$('#anim_1').fadeIn('slow', function() {
        				// Animation complete
						active_anim = 0;
     				 });
					break;
				case 1:
					$('#anim_2').fadeIn('slow', function() {
						active_anim = 1;
     				 });
					break;
				case 2:
					$('#anim_3').fadeIn('slow', function() {

						active_anim = 2;
     				 });
					break;
				default:
			 }   
			 
			 
		 }
		 
		 
	
		 

     });
	
