window.addEvent('domready', function()
{
    initCountryProgramsBlock();
});

function initCountryProgramsBlock()
{
    $$('#cp_pagination a').addEvent('click', countryProgramsPaging);
}

function countryProgramsPaging (e)
{
    e.stop();
	new Element('div',
	{
		'class': 'ajax-loader',
		'id': 'ajax-pt',
		'styles': {
			'width': $('cpWrapper').getWidth(),
			'height': $('cpWrapper').getHeight(),
			'opacity': '0.75',
			'z-index': '150',
			'position': 'absolute',
			'right': 0,
			'top': 3,
			'-moz-border-radius': '5px'
		}
	}).inject($('cpWrapper'));

	new Request({url: this.get('href'), method: 'get',
		 onSuccess: function (data)
		 {
		 	$('cpWrapper').set('html', data);
		 	initCountryProgramsBlock();
		 }
	 }).send();
}

