$(document).ready(function(){
		$('#menu li.headlink').hover(
			function() { $('ul', this).css('display', 'block'); },
			function() { $('ul', this).css('display', 'none'); });
			
			/* This is basic - uses default settings */
	
			$("a.single_image").fancybox({
				'titleShow'		: false,
				'transitionIn'	: 'fade',
				'transitionOut'	: 'fade',
				'overlayOpacity' : 0
			});
			
			/* Using custom settings */
			
			$("a.inline").fancybox({
				'hideOnContentClick': true
			});
			
			$("a.iframe").fancybox({
				'width'				: 1210,
				'height'			: 800,
		        'autoScale'     	: false,
		        'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'type'				: 'iframe'
			});
			
		
			/* Apply fancybox to multiple items */
			
			$("a.group").fancybox({
				'transitionIn'	:	'fade',
				'transitionOut'	:	'fade',
				'speedIn'		:	600, 
				'speedOut'		:	200, 
				'overlayShow'	:	false
			});
			
			
	});
