 jQuery(document).ready(function(){
    
    jQuery("#showimg").click(function () {
        jQuery("#questionimg").show("slow");
               
      });
	
	
	jQuery("#questionimg").click(function () {
		   jQuery("#questionimg").hide("slow");
      }
    );

  });
