$(document).ready(function() {
		
	$("a[href$='iframe']").removeClass().addClass('iframe');
	
	$('a.iframe').each(function(){
        var dWidth 	= parseInt($(this).attr('href').match(/width=[0-9]+/i)[0].replace('width=',''));
        var dHeight =  parseInt($(this).attr('href').match(/height=[0-9]+/i)[0].replace('height=',''));
		$(this).fancybox({
			'width':dWidth,
			'height':dHeight,
			'autoScale'     	: false,
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'speedIn'		:	600, 
			'speedOut'		:	200, 
			'overlayShow'	:	false,
			'autoScale'		: 	true,
			'autoDimensions':	true,
			'type'			: 'iframe'
		});
   });
	
});
