What am I doing wrong?

I’m not very good at programming, so can anybody help?. I’m trying to get a movie clip to work that has rollover captions in the main time-line. The captions works in the MC but once it’s called into my main page, it doesn’t work. Here is a preview of the main page with a slider menu. When you roll over the bars a caption is suppose to appear:
http://homepage.mac.com/tobiewon/calendar/r2wh_cal.html

Here is the MC preview with captions working:
http://homepage.mac.com/tobiewon/calendar/contentHold.html

Also, here is a link to download the fla file:
http://homepage.mac.com/tobiewon

If anybody can help me with this, I’d greatly appreciate it. Thanks.

The action script in the MC is as follows. Do I need to add something in order for this to work in the slider menu? Also, how do you change the font and box opacity in this script?:

startDrag(_root.box, true);
MovieClip.prototype.resize = function() {
var speed = 2;
var w = box.caption.textWidth+10;
var h = box.caption.textHeight+10;
this.onEnterFrame = function() {
this._width += (w-this._width)/speed;
this._height += (h-this._height)/speed;
if (Math.abs(this._width-w)<1 && Math.abs(this._height-h)<1) {
this._width = w;
this._height = h;
delete this.onEnterFrame;
}
};
};
Button.prototype.hover = function(refuge) {
this.onRollOver = function() {
_root.x = 1;
box.createTextField(“caption”, 1, box.test._x+2, box.test._y+2, 200, 50);
box.caption.type = “dynamic”;
box.caption.html = true;
box.caption.multiline = true;
box.caption.wordWrap = true;
box.caption.size = 10;
box.caption.htmlText = refuge;
box.caption.autoSize = “left”;
box.test.resize();
};
this.onRollOut = function() {
_root.x = 0;
box.caption.text = " ";
};
};
or1.hover(“Politics Section Redesign: Launching a new look-and-feel to our Politics home”)
or2.hover(“A Post Primary Coverage: Daily and weekly reporting from across the nation”)
or3.hover(“Convention Coverage”)
or4.hover(“Debate Coverage”)
or5.hover(“Election Night Coverageg”)
or6.hover(“Inauguration Coverage; 1st State of the Union”)
or7.hover(“First 100 Days Coverage”)
gn1.hover("The Fix: Our leading politics blog by Chris Cillizza (formerly of Roll Call newspaper), which aims to be a one-stop shop for political junkies in Washington and around the world ");
gn2.hover("The Politics Desk: A transparent dialogue between our editors and our readers on how we cover politics ")
gn3.hover(“The Sleuth: Mary Ann Akers dishes on the off-hours, backstage activities of Washington’s elite”)
gn4.hover(“Capitol Briefing: A discussion of the day’s movers, shakers and issues, an inside look at who makes Capitol Hill work (or not)”)
gn5.hover(“The Talk: Our weekly summary of the lead topics on Sunday morning TV programs such as Meet the Press, Face the Nation, This Week, Late Edition, and Fox News Sunday”)
gn6.hover(“2008 Tracking Blog: Catching and discussing all the news stories, both big and small, on the campaign trail”)
gn7.hover(“Behind the Numbers: A look inside the data that helps define political activity and debates”)
bu1.hover(“P3—Post Politics Podcast: Daily 8-10 minute podcast recapping the political news coverage of the day”)
bu2.hover(“Post Politics Video Podcast: Our politics video, including Post Talk and Story Conference, available in a single video podcast download”)
vt1.hover(“Congressional Votes Database: Our award-winning information center tracking legislation and the voting records of individual senators and representatives”)
vt2.hover(“2008 Candidate Database: All the information that our readers want (and more) on each candidate (or likely candidate), including career history, issue and voting records, books and other writings, speeches, etc.”)
vt3.hover(“Campaign Finance Database: Central clearinghouse of information on campaign finance, including funding organizations and individual donors, fundraising events and activities, and campaign finance legislation and issues”)
vt4.hover(“Campaign Ad Database: Comprehensive collection of campaign ads and analysis of their impact”)
rv1.hover(“Interactive Polling: Readers can track and compare their own views compared to the official Washington Post/ABC News polls as they are released”)
rv2.hover(“Who Should I Vote For? Interactive Quiz: Readers can get down to just the issues, matching their own preferences with the candidates”)
rv3.hover(“Electoral College Interactive Game—Primary Edition: Reader-to-reader competition over the primary results”)
rv4.hover(“Electoral College Interactive Game—General Election Edition: A second round of reader competition”)