// JavaScript Document


function JQ_open_fade_frame(targetURL){
	
	document.getElementById("JQ_fade_over_iframe").src = targetURL;
	document.getElementById('html_tag').style.overflow = 'hidden';
	document.getElementById("JQ_fade_over_color_BG").style.visibility = 'visible';
	$('#JQ_fade_over_color_BG').animate({opacity:0.7}, {duration: 1000, easing: 'jswing',
			complete: function() { // the callback
				document.getElementById("JQ_fade_over_iframe").style.visibility = 'visible';	
			}
		});
}


function JQ_close_fade_frame(){
	document.getElementById('html_tag').style.overflow = 'auto';
	$('#JQ_fade_over_color_BG').animate({opacity:0}, {duration: 1000, easing: 'jswing',
			complete: function() { // the callback
					document.getElementById("JQ_fade_over_color_BG").style.visibility = 'hidden';
					document.getElementById("JQ_fade_over_iframe").src = '';
			}
		});

	document.getElementById("JQ_fade_over_iframe").style.visibility = 'hidden';
	
	
}

function init_JQ_fade(){
	$('#JQ_fade_over_color_BG').animate({opacity:0}, {duration: 1, easing: 'jswing'});
}

