$(document).ready(function(){ 
      setInterval('checkAnchor()',100); 
})
var currentAnchor = null;
function checkAnchor(){
	if(currentAnchor != document.location.hash){
		currentAnchor = document.location.hash;
		if(!currentAnchor)
		{
			currentLocation = document.location;
			var type = null;
		}
		else
		{
			if (document.location.hash == '#home') var type = 'song/new';
			else
			{
				var url_split = currentAnchor.split('#');
				if(url_split)
				{
					var type = url_split[1];
				}
				else var type = null;
			}
				

		}
		if(type.indexOf('/') != -1)
		{
			var show = type.split('/');
			var show = show[0];
		}
		else
		{
			var show = type;
		}
		showLoader("list");
  		    $.ajax({
        	url: '/content/index.php',
        	type: 'POST',
        	data: "type="+type,
        	dataType: "html",
        	success: function(data){
				if(show == 'play' || show == 'psinger' || show == 'palbum' || show == 'pmlist' || show == 'pylist' || show == 'npl'){
					if(data == '1'){ 
					openPopup('Đăng nhập để nghe nhạc'); 
					$("#load_result").html("").hide().fadeIn('slow');
					block = false;}
					else showResult("play",data);}
				else showResult("list",data);
				//if(show == 'category') $.scrollTo('#list_result', 1000);
       		 }
   		 });
	}
}
