$(document).ready(function(){


	$("#smscost").submit(function() {
		$("#price_frame").attr("src", "index.php?short_num="+$("#short_num").val());
		$("#price").dialog({
					autoOpen: false,
					modal: true,
					title: 'Стоимость смс',
					minWidth: 770,
					width: 770,
					minHeight: 420,
					buttons: {
						Ok: function() {
							$(this).dialog('close');
						}
					}
				});
				$("#price").dialog('open');
				return false;
	});
	
	$("#send_feedback").submit(function() {
			var str = '/sendEmail.php?message='+$("#message").val()+'&reply='+$("#reply").val()+'&file_id='+$("#file_id").val();
			$("#message").val('');
			$("#reply").val('');
			alert('Сообщение отправлено');
			$.get(str, function(xml){
				$("#submit").html(xml);
			});
			return false;
		});
	
	$("#prices").tablesorter();
});
