$(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("go to eLearning");
										break;
									case "p_two":
										$("#goto").html("go to Web Design");
										break;
									case "p_three":
										$("#goto").html("go to Systems");
										break;
									case "p_four":
										$("#goto").html("go to Programs");
										break;
									case "p_five":
										$("#goto").html("go to Consulting");
										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/en",true);
});
