$(document).ready(function(){
	var maxheight = 0;
	$('.navigation div').each(function(){
		var blockheight = $(this).innerHeight();
			if (blockheight > maxheight) {
				maxheight = blockheight;
			}
	});
	$('.navigation div').css('height', maxheight + 'px');
	
	$('.city select').change(function () {
		$('.city span').html($(this).find("option:selected").attr('value'));
	});
	$('select.styled').sSelect();
});


