$('document').ready(function(){
	$('.to_lang_set').css("cursor", "pointer");
	$('.to_lang_set').css("text-decoration", "underline");
	$('.to_lang_set').click(function(e){
		var href = $(this).attr('href');
		window.open(href);
		e.preventDefault();
	});
});
