$(document).ready(
	function(){
		$(".projeto01").mouseover (function() {
				$("#painel").slideDown("slow");
				$("#painel").ajaxStart(function(){
					$(this).html("<img src=\"load.gif\" alt=\"Carregando\" style=\"border: 0px;\" />");
				});
				$.ajax({
					type: "GET",
					url: "detalhe_projeto.php",
					data: "cod=1",
					success: function(msg){
						$("#painel").html(msg);
					}
				});
		});
		$(".projeto02").mouseover (function() {
				$("#painel").slideDown("slow");
				$("#painel").ajaxStart(function(){
					$(this).html("<img src=\"load.gif\" alt=\"Carregando\" style=\"border: 0px;\" />");
				});
				$.ajax({
					type: "GET",
					url: "detalhe_projeto.php",
					data: "cod=2",
					success: function(msg){
						$("#painel").html(msg);
					}
				});
		});
		$(".projeto03").mouseover (function() {
				$("#painel").slideDown("slow");
				$("#painel").ajaxStart(function(){
					$(this).html("<img src=\"load.gif\" alt=\"Carregando\" style=\"border: 0px;\" />");
				});
				$.ajax({
					type: "GET",
					url: "detalhe_projeto.php",
					data: "cod=3",
					success: function(msg){
						$("#painel").html(msg);
					}
				});
		});
		$(".projeto04").mouseover (function() {
				$("#painel").slideDown("slow");
				$("#painel").ajaxStart(function(){
					$(this).html("<img src=\"load.gif\" alt=\"Carregando\" style=\"border: 0px;\" />");
				});
				$.ajax({
					type: "GET",
					url: "detalhe_projeto.php",
					data: "cod=4",
					success: function(msg){
						$("#painel").html(msg);
					}
				});
		});
		$("#painel").hover(function(){
			$("#painel").css("border","4px solid rgb(50,100,150)");
		},function(){
			$("#painel").css("border","0px");
			$("#painel").slideUp("slow");
			$("#painel").html("");
		});

	}
);
