<!-- this is the Slide changer-->
thisImg = 1
imgCt = 3

function newEP(direction){
if(document.estate_planning)
{
thisImg = thisImg + direction
if (thisImg < 1)
{
thisImg = imgCt
}
if (thisImg > imgCt){
thisImg = 1
}
document.estate_planning.src=
"pics/whats_new/estate_planning/slide_"
+thisImg+".jpg"
}
}
//-->

