// JavaScript Document
jQuery(document).ready(function($) {
	$('a#grow').fancybox({
		type                :  'iframe',

		padding             :  0,
		margin              :  0,
		opacity             :  false,
		modal               :  false,
		cyclic              :  false,
		scrolling           :  'no', // 'auto', 'yes' or 'no'

		width               :  950,
		height              :  642,

		autoScale           :  false,
		autoDimensions      :  false,
		centerOnScroll      :  false,

		ajax                :  {},
		swf                 :  { wmode: 'transparent' },

		hideOnOverlayClick  :  false,
		hideOnContentClick  :  false,

		overlayShow         :  true,
		overlayOpacity      :  0.9,
		overlayColor        :  '#ffffff',

		titleShow           :  false,
		titlePosition       :  'outside', // 'outside', 'inside' or 'over'
		titleFormat         :  null,

		transitionIn        :  'none', // 'elastic', 'fade' or 'none'
		transitionOut       :  'none', // 'elastic', 'fade' or 'none'

		speedIn             :  300,
		speedOut            :  300,

		changeSpeed         :  300,
		changeFade          :  'fast',

		easingIn            :  'swing',
		easingOut           :  'swing',

		showCloseButton     :  true,
		showNavArrows       :  true,
		enableEscapeButton  :  true,

		onStart             :  null,
		onCancel            :  null,
		onComplete          :  null,
		onCleanup           :  null,
		onClosed            :  null
	});
});

