// JavaScript Document
$(document).ready(function() {
	
	if($('div.action').length) {
		$('div.action').fadeIn();
		setTimeout(function() { $('div.action').fadeOut('slow'); }, 2500);
	}
	
	$('a[href="/how-it-helps/help"]').fancybox({
		'hideOnContentClick': false,
		'width'				: '75%',
		'height'			: '75%',
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'centerOnScroll'	: true
	});

	$('a[href="/how-it-helps/inspire_me"]').fancybox({
		'hideOnContentClick': false,
		'width'				: '75%',
		'height'			: '75%',
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'centerOnScroll'	: true
	});

	$("a.fancybox").fancybox({
		'hideOnContentClick': false,
		'width'				: '75%',
		'height'			: '75%',
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'centerOnScroll'	: true
	});
	
});
