$(document).ready(function() { 
	var newId = "";
	$('#container').hide();
	$('#playlist').hide();
	$('#chat').hide();
	$('#container').fadeTo(1000,1,function(){
		$('#playlist').slideDown(300,function(){
			$('#chat').show('clip',600,function(){
				$('#chat_content').load('db_chat_select.php',function(){
					setInterval(selectLast, 500);
				});
			});
		});
	});

	
	$('.link1').hover(function(){
		$(this).attr('src','img/winamp2_2.png');
	},function(){
		$(this).attr('src','img/winamp2.png');
	});
	$('.link2').hover(function(){
		$(this).attr('src','img/wmp2_2.png');
	},function(){
		$(this).attr('src','img/wmp2.png');
	});
	$('.link3').hover(function(){
		$(this).attr('src','img/play2_2.png');
	},function(){
		$(this).attr('src','img/play2.png');
	});
	
	$('img[class*=link]:not(img[class=link3])').click(function(){
		open("PODRiV_RADiO.m3u","mywindow","width=400,height=200,top=200,left=500,status=1,location=1,menubar=1,toolbar=1,scrollbar=1,resizable=1,fullscreen=0");
		return false;

	});
	
	
	
	//insert messages
		$('#button').click(function(event){
			event.preventDefault();
			$.ajax({
				type: "POST",
				data: "name="+$('#name').val()+"&text="+$('#text').val(),
				url: "db_chat.php",
				dataType: "json"
			});
			$('#name,#text').val("");
			newId = $('#last').html();
			newId = parseInt(newId);
			newId++;
			//alert(newId);
			$('#chat_content').load('db_chat_select.php',function(){
					$('#'+newId).hide();
					$('#'+newId).show(1000);
			});
		});	
		
		
	//select messages
		function selectMessages(){
			if($('#last').html()!=$('#lastMessage').html()){
				newId = $('#last').html();
				//alert(newId);
				$('#chat_content').load('db_chat_select.php',function(){
						$('#'+newId).hide();
						$('#'+newId).show(1000);
					
				});
			}
		}	

	//select last
		function selectLast(){
			$('#lastMessageDb').load('db_chat_select_last.php',function(){
				selectMessages();
			});
		}

	
}); //Конец ready
