$(document).ready(function() 
{
	// qTip Init
	$('a img[alt]').each(function()
	{
		$(this).qtip({
			content: $(this).attr('title'),
			style: 'fresh',
			position: {
				corner: {
		     		target: 'bottomMiddle',
					tooltip: 'topMiddle'
				}
			}
		});
	});
	
	// FancyBox Init
	$("a.group").fancybox(
	{ 
		'zoomSpeedIn': 300, 
		'zoomSpeedOut': 300,
		'overlayOpacity': 0.4,
		'overlayColor': 'black'
	}); 
});

$.fn.qtip.styles.fresh = {
	padding: 3,
	background: '#a67830',
	color: '#F8F6DF',
	textAlign: 'center',
	border: {
		width: 0,
		radius: 3,
		color: '#a67830'
	},
	tip: 'topMiddle',
	name: 'light'
}