// JavaScript Document
var _v = 0;
var _v2 = 1;
function ajax_update()
{
	//alert('ss');
	var wrapperId 	=	'#random';
	var postFile	=	'random.php';
	 _v++;
	 _v2++;
	$.post(postFile, { v2: _v2 , v: _v}, function(data){$(wrapperId).slideUp('2000',function(){$(this).html(data).slideDown();}).html();});
	setTimeout('ajax_update()', 60000);
}