 $(document).ready(function(){
   $('div[id=crea_jury]').hide ();
   $("a[id=crea_show_jury]").click (function (event){
		
		$("<div id='crea_blackscreen' style='width:100%; \
											 height:100%; \
										     position:fixed; \
											 background-color:black; \
										     top:0px; \
										     left:0px; \
											 z-index:9000 \
											 '></div>").appendTo("body");
		$("<div id='crea_whitescreen' style='width:100%; \
											 height:100%; \
										     position:absolute; \
											 top:0px; \
										     left:0px; \
											 z-index:9001; \
											 text-align:center \
											 '></div>").appendTo("body");
											 
		$("<div id='crea_containerscreen' style='width:100%; \
											 position:fixed; \
											 height:100%; \
											 margin-left:auto; \
											 margin-right:auto; \
											 text-align:center; \
											 '></div>").appendTo("div[id=crea_whitescreen]");
		$("<div id='crea_trombi' style='width:830px; \
											 position:relative; \
                                                                                         overflow-y : scroll; \
											 height:500px; \
											 margin-top:30px; \
											 margin-left:auto; \
											 margin-right:auto; \
                                                                                         background-color:#e3e3dc; \
                                                                                         border-color :white; \
                                                                                         border-width :5px; \
                                                                                         border-style : solid; \
                                                                                         padding : 5px; \
											 text-aling:left; \
											 '></div>").appendTo("div[id=crea_containerscreen]");
		
		 
		$('div[id=crea_jury]').appendTo('div[id=crea_trombi]');
		
		$('div[id=crea_jury]').fadeIn("slow");
		$('div[id=crea_blackscreen]').css("opacity", "0.7");
		$("div[id=crea_containerscreen]").click (function (event){
			$('div[id=crea_jury]').hide ();
			$('div[id=crea_jury]').appendTo('div[id=crea_jury_hidden]');
			$("div[id=crea_whitescreen]").remove ();
			$('div[id=crea_blackscreen]').remove();

		});
		

									 
		
		
		event.preventDefault(); 

	});
 });

