$(document).ready(function(){
	
	$('#busca').keypress(function(event){
		if (event.keyCode == 13) {
			document.form.action=document.form.action + '?cambia_busca=1';
			document.form.submit();
		}
	});		

	$('#borra_tag').click(function(event){
		document.form.action=document.form.action + '?borra_tag=1';
		document.form.submit();
	});		

	$('#borra_busca').click(function(event){
		document.form.action=document.form.action + '?borra_busca=1';
		document.form.submit();
	});		

	$('#pag').keypress(function(event){
		if (event.keyCode == 13) {
			document.form.submit();
		}
	});		

	$('#sel_pais').change(function(){
		document.form.action=document.form.action + '?cambia_pais=1';
		document.form.submit();		
	});	
	
	$('#sel_prov').change(function(){
		document.form.action=document.form.action + '?cambia_prov=1';
		document.form.submit();	
	});	

	$('#sel_pob').change(function(){
		document.form.action=document.form.action + '?cambia_pob=1';
		document.form.submit();
	});	

	$('#es').click(function(){
		$('body').translate({from: 'es', to: 'es', fromOriginal: true });
	});
	$('#en').click(function(){
		$('td').translate({from: 'es', to: 'en', fromOriginal: true });
	});		
	$('#de').click(function(){
		$('body').translate({from: 'es', to: 'de', fromOriginal: true });
	});
	$('#fr').click(function(){
		$('body').translate({from: 'es', to: 'fr', fromOriginal: true });
	});
	$('#it').click(function(){
		$('body').translate({from: 'es', to: 'it', fromOriginal: true });
	});
	$('#pt').click(function(){
		$('body').translate({from: 'es', to: 'pt', fromOriginal: true });
	});
				
});
