jQuery(document).ready(function(){
	
	setupContactPopup();
	checkHash();
	
});

function setupContactPopup()
{
	var ele = jQuery('a[href*="#contact"]');
	ele.attr('id','contact-link');
	ele.addClass('iframe');
	ele.attr('href','https://intractv.wufoo.com/forms/z7x1w3/');
	ele.fancybox({
		overlayColor:'#fff',
		scrolling:'no',
		width: 385,
		autoDimensions:true,
		centerOnScroll:true,
		onStart: function(){
			window.location.hash = 'contact';
		},
		onComplete: function(){
			this.resize;
		},
		onClosed: function(){
			window.location.hash = '';
		}
	});
}

function checkHash()
{
	if(window.location.hash.substring(1)=="contact")
	{
		jQuery('#contact-link').trigger('click');
	}
}
