$(document).ready(function(){

	// Magazine - Iframe
	// ---------------------------------------------
	if( $('a.iframeEssentials').length > 0 )
	{
		$('a.iframeEssentials').fancybox(
		{
			'zoomSpeedIn'        : 300,
			'zoomSpeedOut'       : 300,
			'hideOnContentClick' : false,
			'overlayShow'        : true,
			'frameWidth'         : 990,
			'frameHeight'        : 670,
			'padding'            : 0,
			'overlayOpacity'     : 0.4,
			'callbackOnShow'     : function(){


				$('iframe#fancy_frame').attr('src', '');

				// Need to load the iframe SRC 1 second after the iframe has been created 
				// as there is an issue with loading the realviewtechnologies content into a dynamic iframe.
				setTimeout(function(){

					$('iframe#fancy_frame').attr('src', $('a.iframeEssentials').attr('href'));

				}, 1000);

			}
		});
	}

});


