
prof_box = {

	init: function()
	{
		prof_box.get();
		setInterval("prof_box.get()", 50000);
	
		
	
		
		/*setTimeout(function(){$("#cnt_msg").addClass("red");setInterval(function(){$("#cnt_msg").toggleClass("red");},500)},500);	
		
		*/
		/*prof_box.flashtext("#cnt_msg", 0);*/
	},
	
	flashtext: function(id, i)
	{
		
		var cnt = $(id).attr();
		
		if (cnt!="0"){
		
		if (i==0) {
			$(id).addClass("red");
			setTimeout("prof_box.flashtext('"+id+"', 1)", 500);
		} else {
			$(id).removeClass("red");
			setTimeout("prof_box.flashtext('"+id+"', 0)", 500);
		}
	}
	},
	
	get: function()
	{
		$.ajax({
			type: "GET",
			dataType:"json",
			url: "/prof_box.json",
			data: "",
			cache: false,
			beforeSend: function()
			{

			},
			success: function(data)
			{
				$("#cnt_msg").html(data.cnt_msg);
				$("#cnt_winked").html(data.cnt_winked);
				$("#cnt_offers").html(data.cnt_offers);
				
		
					
				

			} 
			
		});
		
		
	}
}