$(document).ready(function()
{
	$('li.flag a').click(function()
	{
		$('li.flag div').hide();
		$(this).next().show();
    });
});