$().ready(function()
{	
	preloadLateral();
	
	$(".BotonCerrarLateral").click(function() {
		var boton=$(this).attr("boton");
		$("#"+boton).slideUp("medium");
		$(this).hide();
		$(this).parent().find(".BotonAbrirLateral").show();
		accionPanel("cerrarPanel",boton);		
	});
	
	$(".BotonAbrirLateral").click(function() {
		var boton=$(this).attr("boton");
		$("#"+boton).slideDown("medium");
		$(this).hide();
		$(this).parent().find(".BotonCerrarLateral").show();		
		accionPanel("abrirPanel",boton);
	});
	
});

function accionPanel(accion,boton) {
	var param="accion="+accion+"&panel="+boton;
	$.ajax({
		type: "POST",
		url: "sesion.php",
		data: param,
	});		
}

function preloadLateral() {
	var _images = ["imagenes/lateral/flecha_1b.png","imagenes/lateral/flecha_2b.png"];
	var gotime = _images.length;
 
	$.each(_images,function(e) {
		$(new Image()).load(function() {
		}).attr('src',this);
	});	
}

