$(document).ready(function(){
	$("a[rel='gallery']").colorbox();
	$("a[rel='gallery_webcam']").colorbox();	
	$("a[rel='gallery_home']").colorbox();		
	$('.tipsy').tipsy({gravity: 'n'});	
	$("a.video").colorbox({iframe:true, innerWidth:480, innerHeight:385});

	$.fn.qtip.styles.mystyle = {
		width: 200,
		background: '#fff',
		color: 'black',
		textAlign: 'left',
		border: {
			width: 5,
			radius: 3,
			color: '#fff'
		},
		tip: {
			corner: 'bottomMiddle',
			size: {
    	        x: 20,
        	    y : 8
         	}	
		}
	}
	
	$('#menu a[href][title]').each(function() {
		$(this).qtip({
			content: { text: false },
			position: {
				corner: { tooltip: 'bottomMiddle', target: 'topMiddle' },
				adjust: { x: 0, y: 13 }
			},
			hide: { fixed: true, delay: 1000, effect: 'slide' },
			show: { effect: { type: 'slide' } },
			style: 'mystyle'
		});
	});
	
});

