$(document).ready(function () {
	
	$('#content table tr:odd').addClass('odd');
	
	$('a.fancybox').fancybox();
	
	$('#choose-city').change(function () {
		location.assign('/redirect.php?from='+location.href+'&city='+$('#choose-city option:selected').val());
		//alert('/redirect.php?from='+location.href+'&city='+$('#choose-city option:selected').val());
	});
	
});
