function timeout_init() 
{
		
		setTimeout(function(){
			jQuery.ajax({
				 method: "get",
				 url: "ajax/get_notifications.php",
				 data:  "action=number_unsold",
				 beforeSend: function(){
							},
				 complete: function(){
							 },
				 success: function(html){
							jQuery("#number_unsold_tickets_ajax").html(html);
							 }
			  });  
		},2000);
		
	setTimeout('timeout_init()', 2000);
}

