	$(document).ready(function() {
		
		
		
		$(".entry-content img[title]").each(function() {
			var img = $(this);
			var title = img.attr('title');
			img.after("<div class=\"entry-image-title\">" + title + "</div>");
		});
		
		
		$("#years a[title]").qtip(
			{ 
			position: {
					corner: {
						target: 'topMiddle',
						tooltip: 'bottomMiddle'
					}
				},
			style: { 
				border: {
					width: 2,
					radius: 1,
					color: '#000000' },
				background: '#ffffff',
				
				tip: {					
					corner: 'bottomMiddle'
				},
				name: 'light'},
			hide: { 
				effect: { 
					type: 'fade',
					length: '200'} },
			show: { 
				effect: { 
					type: 'fade',
					length: '200'} }
				});
	
});
	
