$(document).ready(function(){
	$('#books').change(function(el){ 
		tmp = $(this).fieldValue();
		if(tmp != '0') {
			document.location.href = 'http://' + tmp + '.streszczenia.pl/';
		}
		return(false);
	});
	
	$('#ages').change(function(el){ 
		tmp = $(this).fieldValue();
		if(tmp != '0') {
			document.location.href = 'http://streszczenia.pl/epoka/' + tmp + '/';
		}
		return(false);
	});
	
	$('#themes').change(function(el){ 
		tmp = $(this).fieldValue();
		if(tmp != '0') {
			document.location.href = 'http://streszczenia.pl/motywy/' + tmp + '/';
		}
		return(false);
	});	
	
	$('#authors').change(function(el){ 
		tmp = $(this).fieldValue();
		if(tmp != '0') {
			document.location.href = 'http://streszczenia.pl/autor/' + tmp + '/';
		}
		return(false);
	});

});
