the word need blinck for seconds later it need to move for next place using javascript code example
Example: the word need blinck for seconds later it need to move for next place using javascript
...
<div id="blink1" class="highlight">New item!</div>
<script type="text/javascript">
<!--
function show()
{
if (document.getElementById)
document.getElementById("blink1").style.visibility = "visible";
}
function hide()
{
if (document.getElementById)
document.getElementById("blink1").style.visibility = "hidden";
}
for(var i=900; i < 4500; i=i+900)
{
setTimeout("hide()",i);
setTimeout("show()",i+450);
}
-->
</script>
...