  $(document).ready(function(){
  
    $(".censor").css("background-color","#000");
    $(".censor-red").css("background-color","#900");

	$(".censor").mouseover(function () {
      $(this).css("background-color","#fff");
    });
    
    $(".censor-red").mouseover(function () {
      $(this).css("background-color","#fff");
    });

	$(".toggle-mailinglist").click(function(){
	  $("#mailing-list").slideToggle("slow");
	});
	

  });
