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