var languages = {'zh_CN': '4', 'en': '5' };
function autofitContent(){
	autofit(document.getElementById('frame_content'));
}

function autofit(/*Object*/ iframe){
	 var height = -1;
	 if (!window.opera) {
		if (iframe.contentDocument && iframe.contentDocument.body.offsetHeight){
			height = iframe.contentDocument.body.offsetHeight;
		}else if (iframe.Document && iframe.Document.body.scrollHeight){
			height = iframe.Document.body.scrollHeight;
		}
	}
	 height = height > 480 ? height : 480; 
	iframe.height = height + 20;
}

$(document).ready(function() {
	var lan = $.cookie('LOCALE') || 'zh_CN';
	
	$('.locale').each(function(index, href) {
		$(href).click(function() {
			var value = $(href).attr("id");
			$.ajax({
				type : 'post',
				url : 'setLocale/',
				data : {
					locale : value
				},
				success : function(rsp) {
					window.location.reload();
				}
			});
		});
	});
});
