
var $j = jQuery.noConflict();


function TI_onResize(){
	var flashMinimumHeight = 580;
	var head = 101;
	var foot = 102;
	var size = $j(window).height() - (head+foot);
	if(size<flashMinimumHeight) size = flashMinimumHeight;
	$j("#flashcontent").css("height", size+"px");
	
}


$j(document).ready(TI_onResize);
$j(window).resize(TI_onResize);
