$(document).ready(function() { 
	$('#LeesVideo').load("/walkOn.php");
	$('.closeIt').click(closeIt);
	$('.replay').click(replay);
});

var closeIt = function(){
	this.blur();
	el = $(this);
	rel = el.attr('rel');
	id = el.attr('id');
	$('#'+rel).empty();
	$('#'+id).hide();
	$('.replay').show();
}
var replay = function(){
	this.blur();
	el = $(this);
	rel = el.attr('rel');
	id = el.attr('id');
	$('#LeesVideo').load("/walkOn.php?vid="+rel);
	$('#'+id).hide();
	$('.closeIt').show();
}
