$(document).ready(function() {

	$('#run_update').click(function() {
		$('#empty').html('<p><input type="checkbox" name="autoscrolling" id="autoscrolling" checked="checked" style="width: 20px;" /><label for="autoscrolling">Activer le scroll automatique</label></p><iframe src="cron.php" id="update"></iframe>');
		setInterval(function() {
				autoscroll();
		}, 100);
		$('#update_close').show();
	});

	$('#update_close').click(function() {
		$('#update_close').hide();
		$('#empty').hide("slow");
		$('#empty').empty();
	});
	
	$("#ajax_loader").ajaxSend(function(event, XMLHttpRequest, ajaxOptions){
		$(this).show();
	});

	$("#ajax_loader").ajaxComplete(function(event, XMLHttpRequest, ajaxOptions){
		$(this).hide();
	});
	
	setInterval("hide_msg()", 10000);

});

function autoscroll(){
	if($("#autoscrolling").is(':checked')){
		$('#update').scrollTo('max');
	}
}

function hide_msg(){
	$('.print_msg').hide("slow");
}
