﻿// JScript 檔
$(function(){
	$(window).load(function(){		
		$('#myFlash').css('top',$(window).height()-$("#myFlash").height());
	
	$(window).bind('scroll resize', function(){
		$('#myFlash').css('top',parseInt($(window).height())-parseInt($("#myFlash").height()));
		}).scroll();
	});
	
});

