$(document).ready(function() {
   $('#fast').click(function(){
     $('div.fast').show();
	 $('div.normal').hide();
   });
    $('#normal').click(function(){
     $('div.fast').hide();
	 $('div.normal').show();
   });
 });