//FADES JQUERY
			  $(document).ready(function(){
				var borrarDiv = "div.sistema";
					$("a.sistemaDiv").click(function () {
						  $(borrarDiv).fadeOut("slow",function(){
								$("div.sistema").fadeIn("slow");
							});
							borrarDiv="div.sistema";
					});
				
					$("a.panelDiv").click(function () {
						  $(borrarDiv).fadeOut("slow",function(){
								$("div.panel").fadeIn("slow");
							});
							borrarDiv="div.panel";
					});
				
					$("a.controlDiv").click(function () {
						  $(borrarDiv).fadeOut("slow",function(){
								$("div.control").fadeIn("slow");
							});
							borrarDiv="div.control";
					});
					
					$("a.pregDiv").click(function () {
						  $(borrarDiv).fadeOut("slow",function(){
								$("div.pregFrec").fadeIn("slow");
							});
							borrarDiv="div.pregFrec";
					});
			  });
