$(document).ready(function(){
	$(".minipanel").not("#p_photo").hover(function(){
								$("#p_photo").get(0).removeChild($("#p_photo img").get(0));
								imagen = new Image();
								imagen.src = "images/"+this.id+".jpg";
								$("#p_photo").get(0).appendChild(imagen);
								switch (this.id){
									case "p_one":
										$("#goto").html("ir a eLearning");
										break;
									case "p_two":
										$("#goto").html("ir a Dise&ntilde;o Web");
										break;
									case "p_three":
										$("#goto").html("ir a Sistemas");
										break;
									case "p_four":
										$("#goto").html("ir a Programas");
										break;
									case "p_five":
										$("#goto").html("ir a Consultor&iacute;a");
										break;
								}
							},function(){
								$("#p_photo").get(0).removeChild($("#p_photo img").get(0));
								imagen = new Image();
								imagen.src = "images/photo.jpg";
								$("#p_photo").get(0).appendChild(imagen);
								$("#goto").html("&nbsp;");
							}
	);
	$("#content").not(".mceEditorContainer").jqlink("http://www.sevir.org",true);
});
