$(document).ready(function(){
	rotateAgent();
	setInterval("rotateAgent()",300000);
});
function rotateAgent(){
	$('.agent-panel').fadeOut('normal',function(){
		$.get('/agent-rotate.php',function(data){
			$('.agent-panel').html(data);
			$('.agent-panel').fadeIn('normal');
		});
	});
}
