// JavaScript Document

$(function(){
	setInterval('showImage()',1000*4);
});
var picid=0;
function showImage(){
	picid++;
	var count=$("#adver div").length;
	id=picid%count;
	$("#adver div").fadeOut(1200);
	$("#adver div").eq(id).fadeIn(1200);	
	
}
function doZoom(size) 
{ 
var zoom=document.all?document.all['txtbody']:document.getElementById('txtbody'); 
zoom.style.fontSize=size+'px'; 
} 
