$(document).ready(function() {
	$(".dropdown_lang dt a").click(function() {
    		$(".dropdown_lang dd ul").toggle();
			
			return false;
	});
});	
