function showRandomImage(){
	var idx = "pic-"+Math.ceil(Math.random()*16);
	document.write("<img name='u' src='../newimg/"+idx+".jpg' align='absbottom' style='filter:alpha(opacity=0)' />");
}
function showRightRandomImage(){
	var idx = "right-"+Math.ceil(Math.random()*4);
	document.write("<img id=theme1 src='../newimg/"+idx+".jpg' align='absbottom' border='0' style='FILTER: progid:DXImageTransform.Microsoft.Pixelate(MaxSquare=50); display:none'/>");
}

var b = 1;
var c = true;
function fade()
{
 if(document.all);
 if(c == true)
 { b+=2;   setTimeout("fade()",5);}


 if(b<99)
 { u.filters.alpha.opacity=0 + b; c == false; }
 
}

var num = 50
function chFilter() {
if(num > 2) {
num -= 1
theme1.style.filter = "progid:DXImageTransform.Microsoft.Pixelate(MaxSquare=" + num + ")"
setTimeout("chFilter()",5)
} else {
theme1.style.filter = ""
}
}
