function alphaon(which2)
{
theobject=which2;
highlighting=setInterval("highlightit(theobject)",50);
}

function alphaoff(which2){
clearInterval(highlighting);
which2.filters.alpha.opacity=35;
}

function highlightit(cur2){
if (cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=5;
else if (window.highlighting)
clearInterval(highlighting);
}

var bookmarkurl="http://esauriti.splinder.com";
var bookmarktitle="CiCcioX's BloG";
function preferiti(){
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}
function home() {  
if(document.all)
document.body.style.behavior='url(#default#homepage)';
document.body.setHomePage('http://esauriti.splinder.it');
}

var hellotext="*One like no one*"
    		var thetext=""
    		var started=false
    		var step=0
    		var times=1
function welcometext()
	{
      		times--
      		if (times==0)
      		{ 
        		if (started==false)
        		{
          			started = true;
          			window.status = hellotext;
         	 		setTimeout("anim()",1); 
        		}
        		thetext = hellotext;
      		}
    		}

function showstatustext(txt)
    	 	 {
      		 	thetext = txt;
      			setTimeout("welcometext()",4000)
      			times++
    		}
function anim()
    		{
      			step++
      			if (step==5) {step=1}
      			if (step==1) {window.status='>   '+thetext+'   < '}
    			if (step==2) {window.status=' >  '+thetext+'  <  '}
      			if (step==3) {window.status='  > '+thetext+' <   '}
      			if (step==4) {window.status='   >'+thetext+'<    '}
      			setTimeout("anim()",200);
    		}
