var sonntagplayer = function(){
	return {

		init: function()
		{
			if($('#btncontainer').length>0)
			{
				$('.btnlink').each(function() {									   
					if (!$(this).attr('href'))
					{
						$(this).remove();	
					}						   	
				
				});
			}
		},
		
		openWin: function(el)
		{
			var win = window.open('/scripts/sonntagplayer.html?v=' + escape(el.href),'sonntagplayer','scrollbars=no,width=500,height=460');
			win.focus();
		}
	};
}();

$(document).ready(sonntagplayer.init);
