function getRandom() {
	$('#pro-focus').fadeOut('slow');
	$('#pro-focus').load( base_url + 'product/ajax', '', reloadHot);
};

function reloadHot() {
	var times = 60000;
	$('#pro-focus').fadeIn('slow');
	setTimeout( 'getRandom()' , times );
};