function fancyClose() {
	$.fancybox.close();
}
$(document).ready(function () {
    $("a#gmap-show").fancybox({
		hideOnContentClick : false
	});

    $('a#gmap-show').click(function () {return false;} )

	$("#youtube-container").fancybox({
		'padding'		: 0,
		'autoScale'		: false,
		'transitionIn'	: 'none',
		'transitionOut'	: 'none',
		'width'			: 640,
		'height'		: 480,
		'href'			: 'http://vimeo.com/moogaloop.swf?clip_id=23215648&autoplay=1',
		'type'			: 'swf',
		'overlayColor'	: '#111'
	});

	if ($.cookie('popupcookie') == null) {
		$.cookie('popupcookie', true, {path: '/'});
		$("#splashscreen").fancybox({
			showCloseButton: false,
			width: 639,
			height: 532,
			autoScale: false,
			type: 'iframe',
			padding: 0,
			margin: 0
		}).trigger('click');
	}

});



