// JavaScript Document

jQuery(function($){
				if($.cookie("modal2") != 'true')
    			{
				window.onload = function() {loadIntro().trigger('click');}
				$.cookie("modal2", "true", { Path: '/', expires: 7 });
    			}    
		    });

/* loadIntro */
function loadIntro() {
  // ------------------ loading customers intro page
	$.fancybox({
			'width'				: 400,
				'height'			: 350,
				'autoScale'			: false,
				 'scrolling'		: 'no',
				'transitionIn'	: 'fade',
			    'transitionOut'	: 'fade',
				'type'				: 'iframe',
					'overlayColor'		: '#000',
			'overlayOpacity'	: 0.6,
		'href': 'http://allproscience.com/ALLPROWEB/newsletter.html'
	});
}
