	$(document).ready(function() {  
         $('div#stepwrap:eq(0)> div').hide();
	     $('#step1').show();
	});
    jQuery(function() {  
         $('.step2').click(function() {  
           $('#step1').fadeOut("slow");
           $('#step2').fadeIn("slow");
		   return false;
         });
         $('.step3').click(function() {  
           $('#step2').fadeOut("slow");
           $('#step3').fadeIn("slow");
		   return false;
         });
         $('.step4').click(function() {  
           $('#step3').fadeOut("slow");
           $('#step4').fadeIn("slow");
		   return false;
         });
         $('.step5').click(function() {  
           $('#step4').fadeOut("slow");
           $('#step5').fadeIn("slow");
		   return false;
         });
         $('.step6').click(function() {  
           $('#step5').fadeOut("slow");
           $('#step6').fadeIn("slow");
		   return false;
         });
         $('.step7').click(function() {  
           $('#step6').fadeOut("slow");
           $('#step7').fadeIn("slow");
		   return false;
         });
         $('.step8').click(function() {  
           $('#step7').fadeOut("slow");
           $('#step8').fadeIn("slow");
		   return false;
         });
         $('.step1s').click(function() {  
           $('#step2').fadeOut("slow");
           $('#step1').fadeIn("slow");
         });
         $('.step1e').click(function() {  
           $('#step8').fadeOut("slow");
           $('#step1').fadeIn("slow");
		   return false;
         });

         $('.step2r').click(function() {  
           $('#step3').fadeOut("slow");
           $('#step2').fadeIn("slow");
		   return false;
         });
         $('.step3r').click(function() {  
           $('#step4').fadeOut("slow");
           $('#step3').fadeIn("slow");
		   return false;
         });
         $('.step4r').click(function() {  
           $('#step5').fadeOut("slow");
           $('#step4').fadeIn("slow");
		   return false;
         });
         $('.step5r').click(function() {  
           $('#step6').fadeOut("slow");
           $('#step5').fadeIn("slow");
		   return false;
         });
         $('.step6r').click(function() {  
           $('#step7').fadeOut("slow");
           $('#step6').fadeIn("slow");
		   return false;
         });
         $('.step7r').click(function() {  
           $('#step8').fadeOut("slow");
           $('#step7').fadeIn("slow");
		   return false;
         });
     });
