$(function()
{
	$('div.comment:eq(0)').css('margin-top', '10px');
	$('img.about_img').tooltip().create({
		css: {
			color: 'white',
			background: '#330000',
			'-moz-border-radius': '5px',
			'-webkit-border-radius': '5px',
			padding: '4px 10px',
			fontSize: '11px',
			fontFamily: 'tahoma, arial',
			width: '141px'
		},	
		showTail: false,
		transition: 'slide',
		transitionDuration: 200,
		relativeLeft: 85,
		relativeTop: -99,
		content: function()
		{
			return "Your email address is not required.  It will only be used to retrieve your <a class='gravatar_link' href='http://en.gravatar.com' target='_blank'>gravatar</a> if one is available.<br /><br />If you would like to be contacted by Dirk directly, please drop him a line on the contact page.";
		}
	});
	
	$(window).resize(function()
	{
		$('img.about_img').tooltip().reposition();
	});
});