$(document).ready(function(){
	
	$('#editfileform').submit(function()
	{
		$('#editfileform').hide();
		$('.objectdetails').append('<div class="uploading"><h3>File is uploading</h3><p>Your file is uploading which can take several minutes for large files.  Please wait while your file uploads.</p></div>');
		
	});
	
	$('.downloadlink').click(function(event)
	{
		var urlto = event.target.href;
		
		$('body').append('<div id="question" > <h2>IMPORTANT</h2><p>Please ensure that you always check back  here for the latest version of the file you are about to download when using  it in the future.</p> <a href="#" id="canceldialog">OK</a> </div> ');
		$('#canceldialog').click(function() {$.unblockUI(); window.location = urlto; });
		var question = $('#question')[0]; 
		$.blockUI(question, { width: '275px' }); 
		return false;
	}
	);
	
	
});