$(document).ready(function() {

  	$('.start').addClass('hide_prev');
	
	   $(".haccordion").haccordion();

  
  
  	 $(".nav1").click(function() {

		 $("#image2").fadeOut("slow");
		 $("#image3").fadeOut("slow");
		 $("#image1").fadeIn("slow");
		 

	});
	
	$(".nav2").click(function() {

 		
	 	 $("#image1").fadeOut("slow");
		 $("#image3").fadeOut("slow");
		 $("#image2").fadeIn("slow");
		 
	});
	
	$(".nav3").click(function() {

			
 		 $("#image1").fadeOut("slow");
		 $("#image2").fadeOut("slow");
		 $("#image3").fadeIn("slow");
		 
	});


	
 });