$(document).ready(function(){
$(".cloud_free").click(function () {
      $("#cloud_layer").fadeIn("slow");
	  return(false);
    });
	   $(".close").click(function () {
     $("#cloud_layer").fadeOut("slow");
	 if(this.id==null) return(false);

    });
});
