//JQuery
//Ronny
$(document).ready(function(){
	$("#abrir").click(function(){
		$("#cliente").show('slow');
	});
	$("#cerrar").click(function(){
		$("#cliente").hide("slow");
	});
});
