$(document).ready(function()
	{
	
	// Music Drop-Down
	$('#top li#music').hoverIntent(showMenu, hideMenu);
	
	menu_active = ($('#top li#music').hasClass('current')) ? true : false;
	
	function showMenu() {
		if(!menu_active) {
			$(this).addClass('current');		
		}
		$('ul', this).slideDown('fast');
	}
	
	function hideMenu() {
		if(!menu_active) {
			$(this).removeClass('current');		
		}
		$('ul', this).slideUp('fast');
	}
	
	// Make external links open in new windows
	var external_re = new RegExp('^https?://(?!'+document.location.hostname+')');

	$('a').each(function(){
		if (this.href.match(external_re)) {
			this.target = '_blank';
		}
	});
	
	// Player Pop-Up
	$("#player a").click(function(){
		window.open(
			$(this).attr('href'),
			'player',
			'status=no,toolbar=no,location=no,scrollbars=no,resizable=no,width=370,height=108'
		);
		return false;
	});	


});