jQuery(document).ready(function($) {
	$("div#mp3player").append('<a href="#" id="open-mp3-player">OPEN PLAYER IN A NEW WINDOW</a>');
	$('a#open-mp3-player').click(function() {
    window.open('http://beyondthedream.info/wp-content/themes/beyondthedream/player.html','', 'location=1,status=1,scrollbars=1,width=255,height=160');
	return false;
	});
	$('a#info').click(function() {
	window.open('http://beyondthedream.info/wp-content/themes/beyondthedream/info.html','','height=300,width=400,left=100,top=100,resizable=yes,scrollbars=yes,toolbar=no,status=yes');
	return false;
	});
	$('a#distributors').click(function() {
	window.open('http://beyondthedream.info/wp-content/themes/beyondthedream/distributors.html','','height=300,width=400,left=100,top=100,resizable=yes,scrollbars=yes,toolbar=no,status=yes');
	return false;
	});
});