
$(document).ready(function(){
var pic = new Image();
pic.src = basepath+"public/images/ajax-loader1.gif";
});

function show_article()
{
	top1 = $('#main_tab_up').offset().top;
	left1 = $('#main_tab_up').offset().left;
	width1 = $('#main_tab_up').width();
	height1 = $('#main_tab_up').height();
	$('#ajax_img').css({"display" : "block", "top" : top1, "left" : left1, "width" : width1, "height" : height1});
	url = basepath+"index.php/main/get_article/"+current_path;
	murl = "Year="+$('#Year').val()+"&month="+$('#month').val();
	$.ajax({
	   type: "POST",
	   url: url,
	   data: murl,
	   success: function(msg){
		 $('#ajax_img').css({"display" : "none"});
		 $('#main_tab_up').replaceWith(msg);
	   }
	 });

}
