// JavaScript Document

var fancyBoxRefresh=false;

function initForm(){};

function initFancyboxCusomize(){
	//fancyBoxRefresh=window.setInterval(function(){fancyboxCusomize();},2000);
}

function fancyboxCusomize(){
 
	$('#fancy_outer:visible:has(div.formOrderContainer)').each(function(){

                        fancyOuter = $(this).height();
                        formOrderCont = $('.formOrderContainer',this).height();
                        fancyContant = $('#fancy_content',this).height();

			var boxHeight = formOrderCont+(fancyOuter-fancyContant+50);
 
                        //console.log(boxHeight+'='+formOrderCont+'+('+fancyOuter+'-'+(fancyContant+50)+')');

			if ($.browser.opera && boxHeight < 400){
                             boxHeight=500;
                         }
                        else
                            { if( boxHeight < 400)  {boxHeight=400;} }

               
			$(this).height(boxHeight);
	});
}

