function do_popup()
{
	if (readCookie('popup1') != 'popup1c')
	{
		writeCookie('popup1', 'popup1c', null);
		$('a#popup1').trigger('click');
	}
}

$(document).ready(function() {
	$("a.fb").fancybox({
		'transitionIn'					:	'fade',
		'speedIn'						:	700, 
		'speedOut'					:	300, 
		'hideOnContentClick'	:	true,
		'overlayColor'				:	'#000000',
		'overlayOpacity'			:	0.5,
		'padding'						:	1
		
	});
	
	$("a.fbi").fancybox({
		'width'							:	435,
		'height'							:	610,
		'padding'						:	0,
		'type'							:	'iframe',
		'transitionIn'					:	'fade',
		'speedIn'						:	700, 
		'speedOut'					:	300, 
		'hideOnContentClick'	:	true,
		'overlayColor'				:	'#000000',
		'overlayOpacity'			:	0.5
	});	
	
	$("a.fbi2").fancybox({
		'width'							:	750,
		'height'							:	400,
		'padding'						:	0,
		'type'							:	'iframe',
		'transitionIn'					:	'fade',
		'speedIn'						:	700, 
		'speedOut'					:	300, 
		'hideOnContentClick'	:	true,
		'overlayColor'				:	'#000000',
		'overlayOpacity'			:	0.5
	});
	
});
