(function($){$.fn.sparks=function(userDefinedSettings){var sparks=$.extend([{number:10,speed:5,img:'/img/sparks/spark.png'}],userDefinedSettings);var cWidth=parseInt($(this).width());var cHeight=parseInt($(this).height());for(var i in sparks){for(var j=0;j<sparks[i].number;j++){var posLeft=Math.floor(Math.random()*cWidth);var posTop=Math.floor(Math.random()*cHeight);var time=20000/sparks[i].speed;$('<div/>').attr('id',i+'_'+(j+1)).addClass(i).append('<img src="'+sparks[i].img+'" />').css('position','absolute').css('left',posLeft-50).css('top',posTop-50).appendTo(this);$(this).sparks.animateSparks('#'+$(this).attr('id'),time,i+'_'+(j+1));}}
return this;};$.fn.sparks.animateSparks=function(container,time,id){var pageWidth=parseInt($(container).width());var pageHeight=parseInt($(container).height());var posLeft=Math.floor(Math.random()*pageWidth);var posTop=Math.floor(Math.random()*pageHeight);$('#'+id).animate({left:posLeft-50,top:posTop-50},time,function(){$(document).sparks.animateSparks(container,time,id);});};})(jQuery);