Stop auto image scrolling

Hi dears how are you Autally i made auto xml base image scrolling i want when our scroll moving with products then mouse over it automatic stop please check this action script please help me any body!

var feed_xml:XML = new XML();
feed_xml.ignoreWhite = true;
feed_xml.load(“data.xml”);//data.xml path
feed_xml.onLoad = function(success) {
init();//initialization
AUTO_id=setInterval(autoscr,(interval1000))//auto scrolling init
};
//function init
function init() {
time_chk()
right._visible=1
right.ar.gotoAndPlay(1)
import mx.xpath.XPathAPI;
_global.item_array = XPathAPI.selectNodeList(feed_xml.firstChild, “/list/item”);
_global.user_flag=feed_xml.firstChild.attributes.u ser_flag
_global.interval=feed_xml.firstChild.attributes.in terval
for (i=0; i<item_array.length; i++) {
item_array
.pic = item_array*.childNodes[0].firstChild.nodeValue;
item_array*.title = item_array*.childNodes[1].firstChild.nodeValue;
item_array*.link = item_array*.childNodes[2].firstChild.nodeValue;
item_array*.id = i;
}
p = 0;
for (i=0; i<item_array.length; i++) {
it = items_mc.item.duplicateMovieClip(“item”+i, i);
it.pic.loadMovie(item_array*.pic);
it.txt.text = item_array*.title;
it.id = item_array*.id;
it.bg.onRollOver = function() {
if(!this._parent._parent._parent.moving){
this.gotoAndStop(2);
}
};
it.bg.onRollOut = function() {
this.gotoAndStop(1);
};
it.bg.onRelease = function() {
if(!this._parent._parent._parent.moving){
getURL(item_array[this._parent.id].link, “_blank”);
}
};
if (i%3 == 0) {
it._x = p+35;
} else {
it._x = p;
}
p = it._x+180;
}
}
//start setting
page = 1;
left._visible=0
right._visible=0
items_mc.setMask(mask)
//bluring when move
function create_blur(flg) {
for (index in items_mc) {
if (flg) {
items_mc[index].filters = [new BlurFilter(25, 0, 1)];
} else {
items_mc[index].filters = [null];
}
}
}
//thumbs moving right
function move_right() {
moving=true
create_blur(1);
left._visible=0
right._visible=0
clearInterval(AUTO_id)
items_mc.onEnterFrame = function() {
if (this._x>-this._parent.page575) {
this._x -= 50;
} else {
this._x = -this._parent.page
575+1;
delete (this.onEnterFrame);
this._parent.page++;
this._parent.create_blur(0);
this._parent.moving=false
this._parent.left._visible=1
this._parent.right._visible=1
this._parent.left.ar.gotoAndPlay(1)
this._parent.right.ar.gotoAndPlay(1)
this._parent.AUTO_id=setInterval(this._parent.auto scr,(interval*1000))//auto scrolling init
if(this._parent.page>(Math.ceil(item_array.length/3)-1)){
this._parent.right._visible=0
}
}
};
}
//thumbs moving left
function move_left() {
moving=true
create_blur(1);
left._visible=0
right._visible=0
clearInterval(AUTO_id)
items_mc.onEnterFrame = function() {
if (this._x<-(this._parent.page-2)*575) {
this._x += 50;
} else {
this._x = -(this._parent.page-2)575+1;
delete (this.onEnterFrame);
this._parent.page–;
this._parent.create_blur(0);
this._parent.moving=false
this._parent.left._visible=1
this._parent.right._visible=1
this._parent.left.ar.gotoAndPlay(1)
this._parent.right.ar.gotoAndPlay(1)
this._parent.AUTO_id=setInterval(this._parent.auto scr,(interval
1000))//auto scrolling init
if(this._parent.page==1){
this._parent.left._visible=0
}
}

};
}
//auto scrolling function
function autoscr(){
if(!act_ar.hitTest(_xmouse,_ymouse,1)){
if(!auto_temp){
if(page<Math.ceil(item_array.length/3)){
trace(Math.ceil(item_array.length/3))
move_right()
}else{
auto_temp=true
}
}else{
if(page>1){
move_left()
}else{
auto_temp=false
}
}
}
}