$(document).ready(function() {

	$("#onlinerButton").each(function() {
	
		$(this).click(function () {

			$("#onlinerStatus").css("display","none");
			$("#onlinerStatus").load("/onlinerAddm.php", {message: $("#onlinerEnter").attr("value")}, function(){
			  	$("#onlinerStatus").fadeIn(150);
			 });
			
			document.getElementById("onlinerEnter").value = "";

		});

	});
	
});


function pokaz() {

	$("#onlinerShow").css("display","none");
	$("#onlinerShow").load("/onlinerView.php", {}, function(){
	  	$("#onlinerShow").fadeIn(150);
	 });

	 
    setTimeout('pokaz()', 8000);
}
