// JavaScript Document

         $(document).ready(function() {
           MoveFlash();
		   AutoImgSize();
         } );

     var  resizeTimer = null;   
  
  
  
window.onresize = function(){   
  if(resizeTimer) clearTimeout(resizeTimer);   

  MoveFlash();
}   

         
function AutoImgSize(){
	
var d=$("p").find("img");

if (d){

	for (var i=0 ;i<d.length;i++){
			//d[i].width=754;
		DrawImage(d[i],700);
	}
}

}

<!--
function key(){ 
return true;
if(event.ctrlKey){
return false;}
//禁止Ctrl
return true;}
document.onkeydown=key;
if (window.Event)
document.captureEvents(Event.MOUSEUP);
function nocontextmenu(){
event.cancelBubble = true
event.returnValue = false;
return false;}
function norightclick(e){
if (window.Event){
if (e.which == 2 || e.which == 3)
return false;}
else
if (event.button == 2 || event.button == 3){
event.cancelBubble = true
event.returnValue = false;
return false;}
}
//禁右键
//document.oncontextmenu = nocontextmenu;  // for IE5+
//document.onmousedown = norightclick;  // for all others
//-->





