// Shadowbox

$(document).ready(function() {
	Shadowbox.init();
});

// Kwicks

$(document).ready(function() {
	$('.kwicks').kwicks({
		max : 275,
		spacing: 8,
		duration: 800,
   	 	easing: 'easeOutExpo'
	});
});

// Qtips

$(document).ready(function() {
	$('.kwicks a[href][title]').each(function() {
		$(this).qtip({
			content: { text: false },
			position: {
				corner: {
					tooltip: 'bottomMiddle',
					target: 'topMiddle'
				},
				adjust: {
						y: -6,						
						mouse: false,
						screen: false,
						scroll: true,
						resize: false,					
				},
				type: 'absolute'
			},
			show: { 
				effect: {
					type: 'fade',
					length: 300
				},
				delay: 200
			},
			hide: { 
				effect: {
					type: 'fade',
					length: 300
				}
			},
			style: {
				border: { 
					width: 1,
					color: '#DDD'
				},
				padding: 10,
				textAlign: 'center',
				tip: {
            		corner: true,
            		size: { width: 5, height: 10 },
            		opacity: 1
         		},
				fontSize: 13,
				fontWeight: 'normal',
				color: '#666',

				name: 'light'
			}
		});
	});
});
