	$(document).ready(function()
		{
			$('#prog_form').ajaxForm({						
					target: 		'#content',
					beforeSubmit: 	showPreloader,
					success: 		hidePreloader
			});	
			
			$("#preloader").hide();
		});
		
		function showPreloader()
		{
			$("#preloader").show();
			$("#content").hide();
		}
		
		function hidePreloader()
		{
			$("#preloader").hide();
			$("#content").show();
	}
