// JavaScript Document

AudioPlayer.setup("http://www.soundtrackseries.com/wp-content/themes/vinylgroove/flash/player.swf", {  
	bg					:	"EDEDED",
	transparentpagebg	:	"yes",
	width				:	230
});  

$(document).ready(function() {
   
   var pageHeight = $("section#page").height();
   var programHeight = $("section#program").height();
   var tallestCol = Math.max(pageHeight, programHeight - 149);
   $("section#page").height(tallestCol);
   
});
