
$(document).ready(function(){
            $(".close").click(function(){
                $("#info").animate({left:"+=10px"}).animate({left:"-5000px"});
            });
            blink();
        });
        function blink(){
			
			var change_val=20;
			for(i=0;i<change_val;i++)
			{
				//if(i==19)
				//	{
					    //document.getElementById("info").style.display="inline";	
				//	}
				//else
				//    {
					   $("#info").fadeOut(800).fadeIn(800).fadeOut(400).fadeIn(400).fadeOut(400).fadeIn(400).fadeOut(1000).fadeIn(1000).fadeOut(1200);
				//	}
				//$("#info").fadeOut(800).fadeIn(800).fadeOut(400).fadeIn(400).fadeOut(400).fadeIn(400).fadeOut(1000).fadeIn(1000).fadeOut(1200);
			}	
        }
        function nudge(){
            $("#info").animate({left:"+=5px"},20).animate({top:"+=5px"},20).animate({top:"-=10px"},20).animate({left:"-=10px"},20)
            .animate({top:"+=5px"},20).animate({left:"+=5px"},20)
            .animate({left:"+=5px"},20).animate({top:"+=5px"},20).animate({top:"-=10px"},20).animate({left:"-=10px"},20)
            .animate({top:"+=5px"},20).animate({left:"+=5px"},20);
        }

