<!Doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Бегущая строка::</title>
</head>
<body>
<form name="form_1">
<input type="button" name="button_1" value="Stop Title">
<input type="button" name="button_2" value="Star Title">
</form>
</body>
<script>
ot = document.title;
document.form_1.button_1.onclick = function()
{
clearTimeout(orgn_ttl);
document.title = ot;
}
title = document.form_1.button_2.onclick = function()
{
var s = document.title;
document.title = s.substr(1) + s.substr(0,1);
orgn_ttl = setTimeout ( title, 132 ) ;
};
title();
</script>
</html>