$(document).ready(function(){
	$(".download-link").click( function () { getDlg( $(this).attr("id") ) } );
	$("#id_country").change( function () { init_opers( $(this).val() ) } );
	
	$("#smsform").dialog({
		autoOpen: false,
		position: ["center","center"],
		modal: true,
		width: 790,
		buttons: { 'Закрыть': function() { $(this).dialog('close'); } },
		close: function() { }
	});
	
	$("#freeload").dialog({
		autoOpen: false,
		position: ["center","center"],
		modal: true,
		width: 500,
		buttons: { 'Закрыть': function() { $(this).dialog('close'); } },
		close: function() { }
	});
	
	$("#smsload").dialog({
		autoOpen: false,
		position: ["center","center"],
		modal: true,
		width: 600,
		buttons: { 'Закрыть': function() { $(this).dialog('close'); } },
		close: function() { }
	});
	
	$("#onlinepayload").dialog({
		autoOpen: false,
		position: ["center","center"],
		modal: true,
		width: 600,
		buttons: { 'Закрыть': function() { $(this).dialog('close'); } },
		close: function() { }
	});
});
