jQuery(function(){
	try{
		jQuery.ajax({
			type:'POST',
			url:'async.php',
			data:{'_async_param':'_mod_get_shouts'},
			success:function(res)
			{
				jQuery('div.shoutbox').html(res);
			}
		});
	}catch(exception){}
		
})

jQuery(function(){
	try{
		jQuery.ajax({
			type:'POST',
			url:'async.php',
			data:{'_async_param':'_mod_get_right_shouts'},
			success:function(res)
			{
				jQuery('div.shoutbox2').html(res);
			}
		});
	}catch(exception){}
		
})
