 $(function() {
	 $("A:not(.sponsoredLink)").each(function(){
		url = '';
		
		if (this.href.substr(0,20) == 'http://youtube.com/w')
		{   //YT2
			id_filmu = this.href.substr(27,11);
			url = 'http://www.youtube.com/v/'+ id_filmu;
		} else if (this.href.substr(0,24) == 'http://www.youtube.com/w') 
		{   //YT2
			id_filmu = this.href.substr(31,11);			
			url = 'http://www.youtube.com/v/'+ id_filmu;
		} else if (this.href.substr(0,22) == 'http://pl.youtube.com/') 
		{   //YT3
			id_filmu = this.href.substr(30,11);			
			url = 'http://www.youtube.com/v/'+ id_filmu;

		}  else if (this.href.substr(0,23) == 'http://www.dailymotion.')  // daily
		{   //YT3
	
			url = this.href.replace('video','swf');
		} 
		else if(this.href.substr(0,24) == 'http://www.metacafe.com/' )
		{
			id_filmu = this.href.substr(30,(this.href.length - 31));			
			url = 'http://www.metacafe.com/fplayer/'+id_filmu + '.swf'
		} else if( this.href.substr(0,39)=='http://video.google.com/videoplay?docid')
		{
			id_filmu = this.href.substr(40,20);
			url = 'http://video.google.com/googleplayer.swf?docId=' + id_filmu + '&hl=pl';
		//szaffa adres/id/title
		} 	else if (this.href.substr(0,30)=='http://www.joemonster.org/mp3/')
		{
			id_filmu = this.href.substr(30, this.href.substr(30).indexOf('/'));
		} 
		else if (this.href.substr(0,32)=='http://www.joemonster.org/video/')
		{
			if ($(this).is(":has(IMG)")){} else
			{
							id = this.href.split('/')[4];
							url = 'http://www.joemonster.org/emb/'+id+'/ex';

			}
		}


		if (url)
		{	msieowy = ($.browser.msie)? ' type="application/x-shockwave-flash" ':'';
			$(this).before('<div align=center><object width="530" height="340" '+msieowy+'><param name="movie" value="'+ url + '"></param><param name="wmode" value="transparent"></param><embed src="' + url + '" type="application/x-shockwave-flash" wmode="transparent" width="530" height="340"></embed></object></div>').slideDown("slow");
			$(this).empty();
		}
	 })
})