var news={};

news.init=function() {
	
}


news.editData=function(newsId) {
	$.post('/index.php',{'jfunc':'news.adminEdit','contentId':$('#contentId').val(),'newsId':newsId},function(data) {
		data=$.parseJSON(data);
		$('#dataEdit').show();
		$('#dataListing').hide();
		$('#newsId').val(data.newsId);
		$('#title').val(data.title);
		$('#newsContent').val(data.content);
		$('#newsLanguage').val(data.language);
		$('input:radio[name=language]').filter('[value='+data.language+']').attr('checked', true)
		
	});
}


news.deleteData=function(newsId) {
	if(confirm('Are you sure ?')) {
		$.post('/index.php',{'jfunc':'news.adminDelete','newsId':newsId},function(data) {
		window.location.reload();
	});
	}
}

news.saveData=function(newsId) {
	$.post('/index.php',{'jfunc':'news.adminSave','newsId':newsId,'title':$('#title').val(),'content':$('#newsContent').val(),'language':$('input:radio[name=language]:checked','#form').val()},function(data) {
		
		window.location.reload();
	});
}


news.newData=function() {
	
		$.post('/index.php',{'jfunc':'news.adminNew'},function(dataId) {
			
			news.editData(dataId);
		});
	
}

