	// Create the tooltips only on document load
	$(document).ready(function() 
	{	
		$(".download_form").qtip({
		   content: 'You may need to right click and choose "Save as or alt/option click."',
		   style: { 
			  width: 200,
			  padding: 5,
			  background: '#d2f2a8',
			  color: 'black',
			  textAlign: 'center',
			  border: {
				 width: 7,
				 radius: 5,
				 color: '#A2D959'
			  },
			  tip: 'bottomMiddle',
			  name: 'dark'
		   },
		   position: {
				  corner: {
					 target: 'topMiddle',
					 tooltip: 'bottomMiddle'
				  }
			   }
		});
	});