var repeat=1 //enter 0 to not repeat scrolling after 1 run, othersise, enter 1
var title=document.title
var leng=title.length
var start=1
function titlemove() {
			  titl=title.substring(start, leng) + title.substring(0, start)
			  document.title=titl
			  start++
			  if (start==leng+1) {
			    start=0
			    if (repeat==0)
			    return
			  }
			  setTimeout("titlemove()",140)
			}
			if (document.title)
			titlemove()
			
			
		function random_style(){
		var mycontent=new Array()
		mycontent[1]='<link rel="StyleSheet" href="p-blue.css" type="text/css">'
		mycontent[2]='<link rel="StyleSheet" href="p-gray.css" type="text/css">'
		mycontent[3]='<link rel="StyleSheet" href="p-green.css" type="text/css">'
		mycontent[4]='<link rel="StyleSheet" href="p-red.css" type="text/css">'
		var ry=Math.floor(Math.random()*mycontent.length)
		if (ry==0)
		ry=1
		document.write(mycontent[ry])
		}
		random_style()			
