﻿$j( document ).ready(function(){
	$j( document ).find(".custom_pagination_ajax_link").each(function(i){
		var url = makeUrlAjaxReady($j(this).attr("href"));
		$j( this ).attr("href", "javascript:void(0);");
		var onClick = $j(this).attr("onclick");
		$j( this ).attr("onclick", "");

		$j( this ).click(function(){
			var ret = true;
			if(  onClick != undefined ){
				onClick = onClick.replace(/^return/ig, "");
				ret = eval( onClick );
			}
			if( ret ){
				$j("#"+custom_pagination_ajax_content_id).load( url );
			}
		});
	});
});
