function popUpMusicPlayer() {
    newWind = window.open('http://music.myspace.com/index.cfm?fuseaction=music.popupplayer&sindex=-1.0&shuffle=false&amix=false&pmix=false&plid=45884&artid=8501721&profid=132830037&friendid=132830037&sseed=0&ptype=3&stime=0.914&ap=1', 'popUpMusicPlayer',
    'status  = 0,' +
    'toolbar = 0,' +
    'menubar = 0,' +
    'scrollbars = 0,' +
    'height = 510, ' +
    'width  = 510');
    newWind.blur();
    window.focus();
}

function changeLinks(parentBody) {
    if (typeof parentBody == 'undefined') {
        parentBody = 'body';
    }

    $(parentBody).find('a').click(function() {
        var link = $(this).attr('href');
    });
}
