<!--

$(document).ready(function() {
	$('.featured_background, .featured_content').corner('round tl,tr,bl 10px');
	$('#subnav').corner('round 10px');
	$('.listen_live a').attr('href','javascript:void(0);').bind('click',listenLive);
	$('#footer ul li a').not(':last').after(' | ');
	externalLinks();
});

function listenLive() {
	var day = new Date();
	var id = day.getTime();
	var URL = 'http://www.ophanim.net/webstreams/?station=krko';
	eval("page" + id + " = window.open(URL, '" + id + "','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=525,height=425,left = 322,top = 259');");
}
function externalLinks(){
	$('#inner_content a').bind('click',function(){
		var src = $(this).attr('href');
		//var srcIndex = $(src).contains('northsound');
			if( $(src).indexOf('northsound')>0 ){
				console.log('true');
				return false;
			}else{
				console.log('false');
				return false;
			}
	});
}

//-->