$.ajaxSetup({
	'beforeSend' : function(xhr) {
	try{
		xhr.overrideMimeType('text/html; charset=iso-8859-1');
	}
		catch(e){
	}
}});

$(document).ready(function() {
	
	// EXPANDIMOS
	$("ul.listadonew li a.info").click(function(evento){
		evento.preventDefault();
			var url = $(this).parent().attr('id');
			//$("ul.listadonew li").removeClass('activo');
			if( $(this).parent().find(".desplegar").is(":visible") ) {
				$(this).parent().find(".desplegar").hide();
				$(this).parents("li").removeClass('activo');
			}
			else {
				$(this).parents("li").addClass('activo');
				$(this).parent().find(".desplegar").slideDown(400);
				$('html,body').animate({scrollTop: $("#"+url).offset().top}, 1000);
			}
		});
	
		$('.mostrar_info a').click(function(evento) {
			evento.preventDefault();
			$(this).parent().slideUp();
			var load_id = $(this).attr('id');
			$("#"+load_id+"_datos").show().html("<div class='cargador'></div>").load("infotono.php?id="+load_id);
		});
		
		$("#sugerirUrl, #intercambioUrl").hide();
		
		$('#changeselect').change(function(){
			valorSelect = $(this).attr('value');
			if (valorSelect != "sugerir_tono") {
				$("#sugerirUrl").hide();
			} else {
				$("#sugerirUrl").show();
			}
			
			if (valorSelect != "intercambio") {
				$("#intercambioUrl").hide();
			} else {
				$("#intercambioUrl").show();				
			}
			//alert('Value change to ' + $(this).attr('value'));
		});
});
