//-------------------------------- SCRIPTS ------------------------------
$(document).ready(function(){
	//Mostrar Descripcion.
		$("a.ver_mas").click(function(e) { e.preventDefault();
		var id = $(this).attr('id');
		$("#mas_info_" + id).slideToggle("slow");
		$(this).hide(); return false;
		});
	//Cambiar a Remoto.
		$("a#cambiarremoto").click(function(e) { e.preventDefault();
			var id = $(this).attr("pid");
			$(this).hide();
			document.getElementById("serie["+id+"][poster]").style.display = "none";
			$("a#cambiarpc").show();
			document.getElementById("serie["+id+"][posterurl]").style.display = "inline-block";
		});
		$("a#cambiarpc").click(function(e) { e.preventDefault();
			var id = $(this).attr("pid");
			$(this).hide();
			document.getElementById("serie["+id+"][posterurl]").style.display = "none";
			$("a#cambiarremoto").show();
			document.getElementById("serie["+id+"][poster]").style.display = "inline-block";
		});
			
});
//----------------------------- Tips by TIPSY ---------------------------

$(document).ready(function(){
	  $('.botonMedia').tipsy({gravity: 's'}); 
	  $('abbr').tipsy({gravity: 's'});$('dfn').tipsy({gravity: 's'});	
	  $('img.mini').tipsy({gravity: 's'});
});
//------------------------- Seleccionar el Texto ------------------------
$(document).ready(function(){
		$(".autoselect").focus(function() {	
			$(this).select();
		});
});
