http://ilovethecode.com/Javascript/Javascript-Tutorials/Javascript_Change_Font_Size.shtml
http://www.w3schools.com/jsref/prop_style_fontsize.asp
http://bucarotechelp.com/design/jseasy/95052001.asp
http://junix.in/howTo/changeFontSize.php
http://www.techtricky.com/change-font-size-with-javascript/
http://www.digimantra.com/tutorials/change-onclick-function-anchor-tag-javascript/
http://www.digimantra.com/tutorials/drag-an-element-image-etc-using-javascript-html-css/
http://www.digimantra.com/tutorials/simple-tabs-using-javascript-and-css/
http://www.digimantra.com/tutorials/add-javascript-function-using-css-class/
http://www.digimantra.com/tutorials/hide-show-div-elements-with-javascript/
http://www.digimantra.com/tutorials/change-a-css-class-dynamically-using-javascript/
http://www.techtricky.com/print-part-of-page-javascript/
http://www.techtricky.com/create-read-and-delete-cookies-with-javascript/
http://www.simon.kaulius.com/dynamically_change_text_javascript.htm
<script type="text/javascript">
//<![CDATA[
var msg = document.title;
var speed = 150;
var endChar = "... ";
var pos = 0;
function moveTitle()
{
var ml = msg.length;
title = msg.substr(pos,ml) + endChar + msg.substr(0,pos);
document.title = title;
pos++;
if (pos > ml) pos=0;
window.setTimeout("moveTitle()",speed);
}
moveTitle();
//]]>
</script>
http://www.techtricky.com/javascript-code-to-scrolling-page-title/
http://www.easywayserver.com/blog/javascript-innerhtml/