// JavaScript Document


	function introducer(){$(document).ready(function(){							   
	$("#introducer").animate({ opacity: 'show' }, 2000);
    });}
	
	var menu = new Array(3);
	menu[0] = "#li1";
	menu[1] = "#li2";
	menu[2] = "#li3";
	
	var count = 0;

	
$(document).ready(function(){
						   
	
	$(".previous").hover(function(){ 
 	$(this).addClass("previous-over"); 
	},function(){ 
	$(this).removeClass("previous-over"); 
	});
	
	$(".next").hover(function(){ 
 	$(this).addClass("next-over"); 
	},function(){ 
	$(this).removeClass("next-over"); 
	});
						   	
	$(menu[0]).animate({ opacity: 'show' }, "slow");
	
	$(".next").click(function(){
	if(count < 2){$(menu[count]).animate({ opacity: 'hide' }, "slow");}
 	$(menu[count+1]).animate({ opacity: 'show' }, "slow");
	if(count < 2){count++; }//alert(count)
	});
	
	$(".previous").click(function(){
    if(count > 0){
	$(menu[count]).animate({ opacity: 'hide' }, "slow");
 	$(menu[count-1]).animate({ opacity: 'show' }, "slow");
	count--;
	}
	});
	
	$(document).pngFix();
		
});