jQuery(document).ready(function($) {
	try {
	jQuery(".region").fancybox({
		'showCloseButton': true,
		'centerOnScroll': false,
		'frameHeight': 750,
		'frameWidth': 550,
		'callbackOnStart': function() {
			jQuery('div#fancy_bg').css('display', 'none');
		    jQuery('div#fancy_inner').css('backgroundColor', 'transparent');
		    jQuery('div#fancy_outer').css('margin-top', '-50px');
		},
		'callbackOnShow': function() {
			jQuery('#fancy_frame').attr('allowtransparency', true);
		},
		'callbackOnClose': function() {
			jQuery('div#fancy_bg').css('display', '');
		    jQuery('div#fancy_inner').css('backgroundColor', '');
		    jQuery('div#fancy_outer').css('margin-top', '');
		}
	});

	jQuery(".contact-frm").fancybox({
		'showCloseButton': false,
		'centerOnScroll': false,
		'frameHeight': 650,
		'frameWidth': 370,
		'padding': 100,
		'callbackOnStart': function() {
			jQuery('div#fancy_bg').css('display', 'none');
			 jQuery('div#fancy_inner').css('backgroundColor', 'transparent');
		    jQuery('div#fancy_inner').css('backgroundImage', 'url(http://www.rizalt.eu/img/cont.png)');
		    jQuery('div#fancy_inner').css('background-repeat', 'no-repeat');
		},
		'callbackOnShow': function() {
			jQuery('#fancy_frame').attr('allowtransparency', true);
		},
		'callbackOnClose': function() {
			jQuery('div#fancy_bg').css('display', '');
			 jQuery('div#fancy_inner').css('background', '');
		}
	});
	}
	catch(err)
	{
		console.log(err);
	}
});
