$(document).ready(function()
	{
	// Invoice Phone ordering popup page
	$(".phone_ordering a").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200,
		'centerOnScroll':	true,
		'overlayOpacity':	0.5,
		'width'			:	500,
		'height'		:	250
		});

	if ($(".phone_ordering a").length > 0) $(".phone_ordering a").click();
	
	$(".iframe_pages a").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200,
		'centerOnScroll':	true,
		'overlayOpacity':	0.5
		});
	
	});
