BC = {
				encima : function() {
					$("div.menu_trabajos a").click(function() {
						var id = $(this).children().attr("name");
						$.post("portada.php",{
							id: id
						},function(txt){
							$("#trabajo").empty().append(txt);
						});
						return false;
					});
				}


}

$(document).ready(BC.encima);