function translateComment(ixCommentId, sToLang) {
	$('#cid'+ixCommentId).hide(function(){
		$(this).translate(sToLang, function(){ $('#cid'+ixCommentId).show("slow"); });
	});
}

function translateDescription(sToLang) {
	var opt = {from:'',to:sToLang};
	$('div#multilangDescription').hide(function(){
		$(this).translate(sToLang, function(){ $('div#multilangDescription').show("slow"); });
	});
}

function translateVotes(sToLang) {
	var opt = {from:'',to:sToLang};
	$('div#allVotes').hide(function(){
		$(this).translate(sToLang, function(){ $('div#allVotes').show("slow"); });
	});
}

function selectLangChange(sGoTo, sURL) {
	window.location = sURL + 'component/language/setlang/' + sGoTo;
}

function changeSubmitLanguage(sTargetDiv) {
    $('#mce'+sTargetDiv).css("display", "block");
}