// JavaScript Document  

$(document).ready(function(){
  	$("#probhelp").hide();
	var x=0;
	
    $("#problink").click(function (e) {
		if (x==0) {
			$("#probhelp").fadeIn("slow");
			x=1;
		}
		else{
      		$("#probhelp").fadeOut("slow");
	  		x=0;
	  	}
		e.preventDefault()
	  
    });    

  });