// init.js

$(document).ready(function()
{
	// CUFON
	Cufon.replace('#photo h2, #graphic h2',							{textShadow: 'rgba(0, 0, 0, 0.5) 0 -1px'});
	Cufon.replace('#web h2, #blog h2, #location h2, #fbook h2',		{textShadow: 'rgba(255, 255, 255, 0.5) 0 1px'});
	Cufon.replace('.button', 										{textShadow: 'rgba(0, 0, 0, 0.5) 0 1px 1px'});
	Cufon.replace('#photo .top, #graphic .top',						{textShadow: 'rgba(0, 0, 0, 0.5) 0 -1px', hover: true});
	Cufon.replace('#web .top, #location .top',						{textShadow: 'rgba(255, 255, 255, 0.5) 0 1px', hover: true});
	
	// QTIP
	$('ul#society li a').qtip(
	{
		position	: {
			corner	: {target: 'bottomMiddle', tooltip: 'topMiddle'},
			adjust	: {y: 8}
		},
		style		: {
			border	: {width: 0, radius: 2, color: '#FFF'},
			tip		: {corner: 'topMiddle', size: {y: 8}},
			title	: {'font-size': 10}
		}
	});
	
	$(document).pngFix();
});