﻿$(document).ready(function() {

	$("a.fbform").fancybox({
		'width': 663,
		'height': 394,
		'margin': 0,
		'padding': 2,
		'autoScale': false,
		'zoomSpeedIn':	500,
		'zoomSpeedOut': 500,
		'type': 'iframe',
		'overlayShow': true,
		'hideOnOverlayClick': false, 
		'hideOnContentClick': false, 
		'enableEscapeButton': true,
		'showCloseButton':true,
		'titleShow': true,
		'titlePosition': 'over',
		'titleFormat': formatTitle
	});
		
	function formatTitle(title, currentArray, currentIndex, currentOpts) {
		return '<div id="title-close"><span><a class="btn-close" href="javascript:;" onclick="$.fancybox.close();">St&auml;ng</a></span></div>';
	}

	//$("a.fbform").trigger('click');
	
	
});
