$(function() {

	$('#vyber_mesto li a.selected').live('click', function() {
		//check if the options are visible
		if( $('#vyber_mesto li a.option:visible').length > 1) {
			//hide the options if currently displaying
			$('#vyber_mesto li a.option:not(.selected)').hide();			
		} else {
			//show the options if hidden
			$('#vyber_mesto li a.option:not(.selected)').show();			
		}
		return false;
	}); 
	
	//check for selecting a new option
	$('#vyber_mesto li a.option:not(.selected)').live('click', function() {
		//change over the selected class
		$('#vyber_mesto li a').removeClass('selected');
		//apply this to the new selection
		$(this).addClass('selected');
		window.location=$(this).attr("href");
		//slide up the selected option
		$('#vyber_mesto li a.option:not(.selected)').hide();			
		return false;
	});

});

