
// We add the fancybox function. We also tell Fancybox to
// open the Wikipedia site in an iFrame.
// For an iFrame, be sure to set the desired width and height.

window.ieFix = setInterval(function(){
	if( document.getElementById('hellobar-wrapper') ){
		clearInterval( window.ieFix );
		// We use an interval check to be sure that the Hello Bar link is
		// present on the page before moving on. 
	
		// For an iFrame, be sure to set the desired width and height.
		jQuery('#hellobar-wrapper [href$="#open-signup"]').fancybox({
			type: 'iframe',
			href: 'http://eepurl.com/fh316',
			width: 700,
			height: 900
		});
	
		// The code below here closes the
		// setInterval functions.
	}
}, 100);

