function exit_iframe() {
	current_path = SWFAddress.getValue();
	if (current_path != "/") {
		window.location = "http://" + SWFAddress.getValue();
	}
	else {
		window.location = "/frontpage" + SWFAddress.getValue();
	}
	
}

Event.observe(window, 'load', function() { init() });

function init() {
	if ($('jukebox_toggle')) {
		$('jukebox_toggle').addClassName('close');
		
		$('jukebox_toggle').observe('click',function() {
			if ($('jukebox_toggle').hasClassName('close')) {
				$('player').morph('margin-top:0;');
				$('jukebox_toggle').morph('margin-top:172px;');
				$('jukebox_toggle').removeClassName('close');
				$('jukebox_toggle').addClassName('open');
				$('jukebox_toggle_link').update('// MUSIC / CLOSE');
			}
			else {
				$('player').morph('margin-top:-167px;');
				$('jukebox_toggle').morph('margin-top:5px;');
				$('jukebox_toggle').removeClassName('open');
				$('jukebox_toggle').addClassName('close');
				$('jukebox_toggle_link').update('// MUSIC / OPEN');
			}
		});
	}
}

document.observe("dom:loaded", function() {
  $$('div.readable_text img').each(function (image) {image.removeAttribute('height');});
});