$(function() {
	
	/* logo home link */
	$('div#logo').click(function() {
		document.location.href = baseUrl;
	});
	
	/* external links */
	$('a[rel*=external]').click( function() {
		window.open(this.href);
		return false;
	});
	
	/* round corners topmenu */
	$('div#topmenu a:first').addClass('first');
	$('div#topmenu a:last').addClass('last');
	
	/* open submenu based on active one */
	$('div#leftcol li.is_active').parents('li').addClass('is_open');
	
	/* make audio links open in player popup window */
	$('a.player').click(function() {
		try {			
		var href = baseUrl + 'player?target=' + this.href + '&title=' + this.title;
		if($(this).hasClass('live')) {
			href += '&mode=live';
		}
		var playerWindow = window.open(href, 'player', 'width=500,height=300,status=no,toolbars=no,address=no,resizable=no,scrollbars=no');
		playerWindow.focus();
		return false;
		} catch (e) {
			
		}
	});
	
	
});
