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"));
				return false;
			})
		}
	});
}
function fromUtf8ToEntity (my_str) {
  my_str = my_str.replace(/([^\x00-\x7f])/g,
    function(s, c, ofs, all) {
      c = String(c);
      return "&#"+c.charCodeAt(0)+";";
    }
  );
  return my_str;
}
function mohsen_davari_price_check(price , price_bank ){
	$("#mohsen_davari_price_table_price").html( price+' ريال' );
	if( price_bank ==0 ){
		$("#mohsen_davari_price_table_price_bank").html( 'مهمان ما باشيد!');
	}else{
		$("#mohsen_davari_price_table_price_bank").html( price_bank+' ريال');	
	}
	$("#mohsen_davari_price_table_total").html( price + price_bank +' ريال' );
}
function show_index_cellid(cellid){
	if( mohsen_davari_where =='index.tpl' ){
		do_ajax( "POST" , my_site_base_url+'/ajax.php?page=price' , 'cellid='+cellid , 'mohsen_davari_price_place' , "body" , "ok" , "normal", "write" )		
	}else{
		do_ajax( "GET" , my_site_base_url+'/index.php?mode=ajax&cellid='+cellid , "md_main" , 'md_main' , "body" , "ok" , "normal", "write" )	
	}
	show_index_cellid_border(cellid);
}
function show_index_cellid_border(cellid){
	
	$('.mohsen_davari_cell').removeClass("davari_cell");
	$('#mohsen_davari_cell_'+cellid).addClass("davari_cell");
	$("#mohsen_davari_price_table_price").html( '' );
	$("#mohsen_davari_price_table_total").html( '' );
	$("#mohsen_davari_price_table_price_bank").html( '' );
}
function page_load(ajax_url, ajaxid){
	ajax_url= ajax_url.replace(/fullmode/g,"ajaxmode");
	if ( ajaxid =='' || ajaxid == null){
		ajaxid="md_main";
	}
	do_ajax( "GET" , fromUtf8ToEntity(ajax_url) , "" , ajaxid , "body" , "ok" , "normal", "write" )
}
$(document).ready(function() {
	ajax_link();
	change_list_class();
	show_index_cellid_border(4)
});