$(function(){

	$('div.dropdown').click(function() {
		if ($('div.list', $(this)).is(':visible')) {
			$('div.list', $(this)).hide();
		}else {
			$('div.list', $(this)).show();
		}
		return false;
	});

	$('div.list ul li').click(function() {
		//var curStr = $('span' , $(this).parent().parent().parent()).html();
		var curVal = $('span' , $(this)).html();
		$('.flag_bg span' , $(this).parent().parent().parent()).html(curVal);
		window.location = $(this).find(':first').attr('href');
	});

	$(document).click(function(e) {
		if (e.target.className != 'dropdown' || e.target.className == '') {
			$('div.list').hide();
		}
	});

});
