function fillup_p(){
if (iedom_p){
cross_slide_p=document.getElementById? document.getElementById("test2_p") : document.all.test2_p
cross_slide2_p=document.getElementById? document.getElementById("test3_p") : document.all.test3_p
cross_slide_p.innerHTML=cross_slide2_p.innerHTML=leftrightslide_p
actualwidth_p=document.all? cross_slide_p.offsetWidth : document.getElementById("temp_p").offsetWidth
cross_slide2_p.style.left=actualwidth_p+slideshowgap_p+"px"
}
else if (document.layers){
ns_slide_p=document.ns_slidemenu_p.document.ns_slidemenu2_p
ns_slide2_p=document.ns_slidemenu_p.document.ns_slidemenu3_p
ns_slide_p.document.write(leftrightslide_p)
ns_slide_p.document.close()
actualwidth_p=ns_slide_p.document.width
ns_slide2_p.left=actualwidth_p+slideshowgap_p
ns_slide2_p.document.write(leftrightslide_p)
ns_slide2_p.document.close()
}
lefttime_p=setInterval("slideleft_p()",-5000)
}



function slideleft_p(){
if (iedom_p){
if (parseInt(cross_slide_p.style.left)>(actualwidth_p*(-1)+8))
cross_slide_p.style.left=parseInt(cross_slide_p.style.left)-copyspeed_p+"px"
else
cross_slide_p.style.left=parseInt(cross_slide2_p.style.left)+actualwidth_p+slideshowgap_p+"px"

if (parseInt(cross_slide2_p.style.left)>(actualwidth_p*(-1)+8))
cross_slide2_p.style.left=parseInt(cross_slide2_p.style.left)-copyspeed_p+"px"
else
cross_slide2_p.style.left=parseInt(cross_slide_p.style.left)+actualwidth_p+slideshowgap_p+"px"

}
else if (document.layers){
if (ns_slide_p.left>(actualwidth_p*(-1)+8))
ns_slide_p.left-=copyspeed_p
else
ns_slide_p.left=ns_slide2_p.left+actualwidth_p+slideshowgap_p

if (ns_slide2_p.left>(actualwidth_p*(-1)+8))
ns_slide2_p.left-=copyspeed_p
else
ns_slide2_p.left=ns_slide_p.left+actualwidth_p+slideshowgap_p
}
}

