/*
jQuery.event.add(window, "load", resizeFrame);
jQuery.event.add(window, "resize", resizeFrame);

function resizeFrame() 
{
	var h = $(window).height();
	var w = $(window).width();
    /*$("#flashContent").css('height',(h < 1024 || w < 768) ? 500 : 400);*/
	/*
	$("#flashContent").css('height',(h < 720) ? 720 : ($(window).height() - $("#footer").height()));
	($(window).height() - $("#footer").height())
}*/
