//PLANTILLA //////////////////////////////////////////////////////////////////////////
function InitPlantilla(){
	if($$('.plantilla')!=""){
		sacajugadores();
	}
}
/* -----------------------------------------------------------------------------
SACAR JUGADORES ---------------------------------------------------------
----------------------------------------------------------------------------- */ 
function sacajugadores(){
	$$('.plantilla a').each(function(jugadores){
		jugadores.addEvent('click', function(e) {
				e = new Event(e);e.stop();
				if($('demarcacionJugador')) $('demarcacionJugador').style.display="none";
				$('contenidoFicha').effect('opacity', {duration: 300, onComplete: function(){llamarAjax(jugadores)}}).start(1,0);
			});
	});
}
function llamarAjax(jugadores){
		//var newAjax = new Ajax('http://65.109.243.87/sacarjugadores.php', {
		//var newAjax = new Ajax('sacarjugadores.php', {
		var newAjax = new Ajax('http://www.realvalladolid.es/sacarjugadores.php', {
			data: 'jugador='+jugadores,
	    	method: 'get',
			asynchronous:false,
	   	onComplete: onCambiarJug,
			update: $('contenidoFicha'),
			evalScripts: true
	  });
		newAjax.request();
}
function onCambiarJug() {
	$('contenidoFicha').effect('opacity', {duration: 300, onComplete: function(){	if($('demarcacionJugador')) $('demarcacionJugador').style.display="block";} }).start(0,1);
}

/* -----------------------------------------------------------------------------
LOAD ---------------------------------------------------------------
----------------------------------------------------------------------------- */ 
window.addEvent('domready', InitPlantilla);