$(document).ready(function(){ 			
	 				 			
	 			function clearQueueAll(){
	 				$('#Item1').clearQueue();
	 				$('#Item2').clearQueue();
	 				$('#Item3').clearQueue();
	 				$('#Item4').clearQueue();
	 				$('#Item5').clearQueue();
	 				$('#Item6').clearQueue();
	 				$('#Item7').clearQueue();
	 				$('#Item8').clearQueue();
	 				$('#Item9').clearQueue();		
					$('#Item1').stop();
	 				$('#Item2').stop();
	 				$('#Item3').stop();
	 				$('#Item4').stop();
	 				$('#Item5').stop();
	 				$('#Item6').stop();
	 				$('#Item7').stop();
	 				$('#Item8').stop();
	 				$('#Item9').stop();
	 			};
	 			
	 			function HideAll(){
	 				$('#Item1').fadeOut();
	 				$('#Item2').fadeOut();
	 				$('#Item3').fadeOut();
	 				$('#Item4').fadeOut();
	 				$('#Item5').fadeOut();
	 				$('#Item6').fadeOut();
	 				$('#Item7').fadeOut();
	 				$('#Item8').fadeOut();
	 				$('#Item9').fadeOut();

	 			};
	 			
	 			function first(){
	 				$('#Item1').fadeIn(500, function(){
	 					
	 					$('#link1').css({'list-style-type':'disc', 'color':'white'}).stop().fadeTo('slow',1.0);
	 					$('#link2').css({'list-style-type':'disc', 'color':'white'}).stop().fadeTo('slow',0.4);
	 					$('#link3').css({'list-style-type':'disc', 'color':'white'}).stop().fadeTo('slow',0.4);
		 				$('#Item2').delay(1500).fadeIn(500, function(){
		 					$('#Item1').fadeOut();
		 					$('#Item3').delay(1500).fadeIn().delay(1000).fadeOut().delay(1000).fadeIn().delay(1000).fadeOut().delay(1000).fadeIn().delay(1000).fadeOut().delay(1000).fadeIn().delay(1000)
		 					.fadeOut(function(){
		 						second();
		 					});
		 				});

		 			});
		 					 			
				};
				function second(){
					$('#Item2').fadeOut();
	 				$('#Item4').fadeIn(500, function(){
	 					$('#link1').css({'list-style-type':'disc', 'color':'white'}).stop().fadeTo('slow',0.4);
	 					$('#link2').css({'list-style-type':'disc', 'color':'white'}).stop().fadeTo('slow',1.0);
	 					$('#link3').css({'list-style-type':'disc', 'color':'white'}).stop().fadeTo('slow',0.4);
		 				$('#Item5').delay(1500).fadeIn(500, function(){
		 					$('#Item4').fadeOut();
		 					$('#Item6').delay(1500).fadeIn().delay(1000).fadeOut().delay(1000).fadeIn().delay(1000).fadeOut().delay(1000).fadeIn().delay(1000).fadeOut().delay(1000).fadeIn().delay(1000)
		 					.fadeOut(function(){
		 						third();
		 					}).end();
		 					
		 				});

		 			});
		 					 			
				};

				function third(){
					$('#Item5').fadeOut();
	 				$('#Item7').fadeIn(500, function(){
	 					$('#link1').css({'list-style-type':'disc', 'color':'white'}).stop().fadeTo('slow',0.4);
	 					$('#link2').css({'list-style-type':'disc', 'color':'white'}).stop().fadeTo('slow',0.4);
	 					$('#link3').css({'list-style-type':'disc', 'color':'white'}).stop().fadeTo('slow',1.0);
		 				$('#Item8').delay(1500).fadeIn(500, function(){
		 					$('#Item7').fadeOut();
		 					$('#Item9').delay(1500).fadeIn().delay(1000).fadeOut().delay(1000).fadeIn().delay(1000).fadeOut().delay(1000).fadeIn().delay(1000).fadeOut().delay(1000).fadeIn().delay(1000)
		 					.fadeOut(function(){
		 					$('#Item8').delay(1000).fadeOut();
		 					first();
		 					}).end();
		 						
		 					
		 				});

		 			});
		 					 			
				};
				first();
				
				var updatedText ='<ul><li id="link1"></li><li id="link2"></li><li id="link3"></li></ul>';	 			 								
				$("#lilnav").html(updatedText); 
				
				$('#link1').attr('href', '#').click(function(){
					clearQueueAll();
					HideAll();
					first();
				});
				$('#link2').attr('href', '#').click(function(){
					clearQueueAll();
					HideAll();
					second();
				});
				$('#link3').attr('href', '#').click(function(){
					clearQueueAll();
					HideAll();
					third();
				});
				
				$("div#Item1, div#Item2, #Item3, #Item4, #Item5, #Item6, #Item7, #Item8, #Item9").click(function(event) {
					  event.preventDefault();
					  window.location = $(this).attr("url");
					  
				});				
				
								 		
	 		});
