// JavaScript Document

/*
$(document).ready(function(){

    $("a.switch_serif").toggle(function(){
        $(this).addClass("swap");
        $("#wrapper").fadeOut("fast", function() {
            $(this).fadeIn("slow").addClass("serif_view");
        });
    }, function () {
        $(this).removeClass("swap");
        $("#wrapper").fadeOut("fast", function() {
            $(this).fadeIn("slow").removeClass("serif_view");
        });
    });

});

*/
$(document).ready(function(){
 
	$("dd.switch_serif").toggle(function(){
	  $(this).addClass("swap"); 
	$("dd.switch_serif").text("SERIF");
	  $("body").fadeOut("fast", function() {
	  	$(this).fadeIn("fast").addClass("serif_view"); 
		 });
	}, function () {
      $(this).removeClass("swap");
  	$("dd.switch_serif").text("SAN-SERIF");
	  $("body").fadeOut("fast", function() {
	  	$(this).fadeIn("fast").removeClass("serif_view");
		});
	  });
});

