$(document).ready(function(){
	$("#city_list select").change(function(){
		window.location.href = $(this).val();
	});	

	$(".nzebra tr").addClass("content_rows");

//для таблички с чередующимися строчками
	$(".nzebra").each(function(i){
		$(this).find("tr:eq(0)").addClass("zerro_row").removeClass("content_rows");	
		$(this).find("tr:eq(1)").addClass("first_row").removeClass("content_rows");	
		$(this).find("tr:eq(2)").addClass("second_row").removeClass("content_rows");
	});
	
	$(".zerro_row").each(function(i){
		$(this).find("td:first").removeClass("bg_rpt, content_rows").addClass("first_td");	
		$(this).find("td:last").removeClass("bg_rpt, content_rows").addClass("last_td");
	});


	$(".zebra tr").addClass("content_rows");
	$(".zebra").each(function(i){
		$(this).find("tr:first").addClass("first_row").removeClass("content_rows");	
		$(this).find("tr:eq(1)").addClass("second_row").removeClass("content_rows");
	})
	$(".first_row td").addClass("bg_rpt");
	$(".second_row td").addClass("bg_rpt");
	$(".first_row").each(function(i){
		$(this).find("td:first").removeClass("bg_rpt, content_rows").addClass("first_td");	
		$(this).find("td:last").removeClass("bg_rpt, content_rows").addClass("last_td");	
	})
	
	$(".second_row").each(function(i){
		$(this).find("td:first").removeClass("bg_rpt, content_rows").addClass("first_td");	
		$(this).find("td:last").removeClass("bg_rpt, content_rows").addClass("last_td");	
	})
	

	$(".content_rows").each(function(i){
		$(this).find("td:first").addClass("first_td");
	});



});
