jQuery(document).ready(function($){
      $("#eye").click(function () {
        if ($("#container").is(":visible")) {
          $("#container").hide("slow");
        } else {
          $("#container").show("slow");
            }
      });
    });
