function circle(){
    var color = 'rgb('+Math.floor(Math.random()*255)+','+Math.floor(Math.random()*255)+','+Math.floor(Math.random()*255)+')';
//      var color = 'rgb(0,0,0)';
    var x = Math.floor(Math.random()*$(window).width());
    var y = Math.floor(Math.random()*$(window).height());
    drawcircle = $('<span>').attr({class: 'drawcircle'}).hide();
                             $(document.body).append(drawcircle);
                             drawcircle.css({
                                            'background-color':color,
                                            'border-radius':'100px',
                                            '-moz-border-radius': '100px',
                                            '-webkit-border-radius': '100px',
                                            top: y-60,
                                            left: x-60
                                            }).show().animate({
                                                                height:'200px',
                                                                width:'200px',
                                                                'border-radius':'200px',
                                                                '-moz-border-radius': '200px',
                                                                '-webkit-border-radius': '200px',
                                                                opacity: 0,
                                                                left: x+750
                             }, 3000).fadeOut(2000);
                             window.setTimeout('circle()',200);
 }
$(document).ready(function() {  
                     circle();
});
