$(document).ready(function()
{
	$('.hover').each(function() {
		$(this).hover(function() {
			$(this).stop().animate({ opacity: 1.0 }, 300);
		},
		function() {
			$(this).stop().animate({ opacity: 0.7 }, 300);
		});
	});

	$('a[href][title]').qtip({
		content: {
			text: false
		},
		style: { 
			name: 'light',
			fontFamily: 'verdana',
			width: 300,
			border: {
				width: 5,
				radius: 10,
				color: '#fff'
			},
		},
		show: { 
			delay: 0,
			effect: {
				type: 'fade',
				length: 250
			},
		},
		position: { 
			target: 'mouse' 
		},
		tip: false
	});	
});

Cufon.replace('h1');
Cufon.replace('h2');
