function ajax_link(){
	$(".ajax").each(function(i){
		if( $(this).attr("mdajax") !=='ok'){
			$(this).attr("mdajax","ok");
			$(this).click(function (){
				page_load(this.href , $(this).attr("ajaxid"));
				$('.active').removeClass('active');
				$(this).addClass('active');
				return false;
			})
		}
	});
}	
	
function page_load(url, ajaxid){
	if ((i = url.indexOf("?")) > 0) {
		ajax_url  = url+"&class=ajax";	
	}else{
		ajax_url  = url+"?class=ajax";
	}
	if ( ajaxid =='' || ajaxid == null){
		ajaxid="md_main";
	}
	do_ajax( "GET" , ajax_url , "" , ajaxid , "body" , "ok" , "normal", "write" )
}
function show_tab(id){
	$('.tab').hide();
	$('#tab_'+id).show();	
}
function confirmation( url , id ) {
	var answer = confirm("آیا از انجام این عملیات مطمئن هستید؟")
		if (answer){
			check_form_do_delete( url , id);
		}
}

$(document).ready(function() {
	ajax_link();
});
