var SmokeEffect={imgLocation:"http://www.ehost.ir/images/ehost_ico.png",smokeWidth:80,smokeHeight:45,smokePos:new Array(),makeEffect:function(id,posX,posY){SmokeEffect.smokePos[id]=new Array();SmokeEffect.smokePos[id]['x']=posX;SmokeEffect.smokePos[id]['y']=posY;var time=(Math.floor(Math.random()*3001));setTimeout("SmokeEffect.animate('"+id+"')",time);},animate:function(id){var puff=document.createElement("IMG");$(puff).attr("src",SmokeEffect.imgLocation);$(puff).attr("alt","puff");$(puff).attr("class","puff");var tempId="puff"+Math.floor(Math.random()*1001);$(puff).attr("id",tempId);$(document.body).append($(puff));var objPos=$('#'+id).offset();$(puff).css({top:(objPos['top']+SmokeEffect.smokePos[id]['y'])+"px",left:(objPos['left']+SmokeEffect.smokePos[id]['x'])+"px",zIndex:25,opacity:0.4});$(puff).animate({width:SmokeEffect.smokeWidth+"px",height:SmokeEffect.smokeHeight+"px",marginLeft:"-"+(SmokeEffect.smokeWidth/2)+"px",marginTop:"-"+(SmokeEffect.smokeHeight*1.5)+"px",opacity:0.9},{duration:1500}).animate({marginTop:"-"+(SmokeEffect.smokeHeight*3.5)+"px",opacity:0.0},{duration:2500});var time=5500+(Math.floor(Math.random()*4501));setTimeout("SmokeEffect.animate('"+id+"')",time);setTimeout("$('#"+tempId+"').remove()",4200);}}