jQuery(document).ready(function() {

	/*
	*   Examples - images
	*/

			
	jQuery(".iframe").fancybox({
		'width'				: '75%',
		'height'			: '75%',
        'autoScale'     	: 'true',
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'overlayOpacity'	: '0.9',
		'overlayColor'		: '#000',
		'type'				: 'iframe'

	});

	
		jQuery(".tiles").fancybox({
        'autoScale'     	: 'false',
		'width'				: '95%',
		'height'			: '95%',
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'overlayOpacity'	: '0.9',
		'overlayColor'		: '#000',
		'type'				: 'iframe'

	});
			
	jQuery(".map").fancybox({
        'autoScale'     	: 'false',
		'width'				: '95%',
		'height'			: '95%',
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'overlayOpacity'	: '0.9',
		'overlayColor'		: '#000',
		'type'				: 'iframe'

	});

});

function toggleMenu(el, over)
{
    if (over) {
        Element.addClassName(el, 'over');
    }
    else {
        Element.removeClassName(el, 'over');
    }
}

