$(document).ready(function(){		
	$("form").submit(function(){jQuery.each($("select,input"), function(){if(!$(this).val())$(this).attr("disabled","disabled")})});
	$("#reiniciar").click(function(){$('#puntuaciones :input').not(':button, :submit, :reset, :hidden').val('').removeAttr('checked').removeAttr('selected').removeAttr('disabled')});
 //	$("#idioma option").each(function(){$(this).addClass('bandera-'+$(this).text()+'_o')});
	$("#mi_usuario").click(function(){$("#usuario").val(id)});
	$("#reiniciar").click(function(){$('#buscador :input').not(':button, :submit, :reset, :hidden').val('').removeAttr('checked').removeAttr('selected').removeAttr('disabled')});
	$("#artista").autocomplete({source: "canciones.php?op=buscar&busqueda=artista",minLength: 2});
	$("#cancion").autocomplete({source: "canciones.php?op=buscar&busqueda=cancion",minLength: 2,select:function(event,ui){c=ui.item.value.split(" - ");$('#cancion').val(c[1]);return false}});
});
