// JavaScript Document

var fancyBoxRefresh=false;

function initForm(){};

function initFancyboxCusomize(){
	fancyBoxRefresh=window.setInterval(function(){fancyboxCusomize();},250);
}

function fancyboxCusomize(){
	$('#fancy_outer:visible:has(div.formOrderContainer)').each(function(){
			var boxHeight = $('.formOrderContainer',this).height()+($(this).height()-$('#fancy_content',this).height()+50);
			if( boxHeight < 400){boxHeight=400;}
			if ($.browser.opera){if( boxHeight > 600){boxHeight=600;}}
			$(this).height(boxHeight);
	});
}

