function togglePlayer() {
	if ($("#webplayer").html() == "") {
		
		var playerCode = '<object type="application/x-shockwave-flash" width="160" height="15" data="/_swf/xspf_player_slim.swf?autoplay=1&song_url=http://listen.siradio.fm/;stream&song_title=Split%20Infinity%20Radio"><param name="wmode" value="transparent"><param name="movie" value="/_swf/xspf_player_slim.swf?autoplay=1&song_url=http://boomer.siradio.fm:8000;stream&song_title=Split%20Infinity%20Radio" /></object><br /><br />';
		
		
		$("#webplayer").html(playerCode);
		$("#webplayer").hide();
		$("#webplayer").slideDown("slow");
	} else {
		$("#webplayer").slideUp("slow",function() { $("#webplayer").html(""); });
	}
}
