var flash_width = 1067;
var flash_height = 640;

$(document).ready(function(){

	$.position_flash();
	
	$('#flash-holder').css({'position' : 'absolute'});
});

$(window).resize(function () {
	$.position_flash();
});

$.position_flash = function () {

	var doc_height = $(document).height();
	
	var ty = (doc_height/4 - flash_height/4);
	
	ty = (ty > 100) ? 100 : ty;
	
	$('#flash-holder').css({'top' : ty});
}