// JavaScript Document
$(document).ready(function(){
	$("#city_select .selected").click(function(){
		$("#city_select .select a").attr('onit','no');
		$(this).slideUp();
		$(this).next().slideDown();
	});

	
	$("#city_select .select > a").click(function(){
		$(this).parent().slideUp(500);
		$(this).parent().prev().html($(this).html());
//		$(this).parent().prev().html($(this).html()+'<img src="/bitrix/templates/mebelville/images/your_city/tick.png"/>');
		$(this).parent().prev().show();
		if($(this).attr('id')!=$.cookie("MEBELVILLE_CITY"))
			$.cookie("MEBELVILLE_LOCATION", "RESET",{ path: "/"});
		else
			$.cookie("MEBELVILLE_LOCATION", "SAME",{ path: "/"});
			
		$.cookie("MEBELVILLE_CITY", $(this).attr('id'),{ path: "/"});
		document.location.reload();
	});

	
});



