Rollovers and rollouts

I would like to activate a rollover / rollout when you scroll over movieclips, but I only want them to work when I’m on this page:
name_mc

Here is my code - the rollover is working, but it’s working on every page, not just name_mc

var current = ‘name_mc’;

menu_one_mc.onRollOver = function() {
rollover(‘menu_one_mc’);
if(current == ‘name’) {
myPicLoader.contentPath = “2.jpg”;
}
};

menu_one_mc.onRollOut = function() {
rollout(“menu_one_mc”);
};