jQuery.easing.easeOutQuart = function (x, t, b, c, d) {
	return -c * ((t=t/d-1)*t*t*t - 1) + b;
};

$(document).ready(function(){
	
	$(".iframe").fancybox({
		'padding': 0,
		'zoomSpeedIn': 300, 
		'zoomSpeedOut': 300, 
		'overlayShow': true,
		'overlayOpacity': .8,
		'frameWidth': 940,
		'frameHeight': 455
	});


	
});