$(document).ready(function()
	{

		// Auto-populate form fields with their titles
		$('.populate').each(function(){
			var e = $(this);
			if (!e.val()) { e.val(e.attr('title')); }
			e.focus(function(){
				var e = $(this);
				if (e.attr('title') == e.val()) { e.val(''); }
			});
					
			e.blur(function(){
				var e = $(this);
				if (!e.val()) { e.val(e.attr('title')); }
			});
		});
		
		// Add analytics to PDF links
		$('a[href$=.pdf]').click(function(){
				_gaq.push(['_trackEvent', 'PDF', $(this).attr("href")]);
		});		

	}
);
